Skip to content

Commit 7383aa8

Browse files
committed
compile: fixed shellcheck issues
Signed-off-by: Lars Erik Wik <lars.erik.wik@northern.tech>
1 parent 175164a commit 7383aa8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build-scripts/compile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,24 +34,24 @@ nova)
3434
esac
3535

3636
echo "$(basename "$0"): Debug: Running make in core repo..."
37-
run_and_print_on_failure $MAKE -C "$BASEDIR"/core -k
37+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/core -k
3838
echo "$(basename "$0"): Debug: Running make install in core repo..."
39-
run_and_print_on_failure $MAKE -C "$BASEDIR"/core install DESTDIR="$BASEDIR"/cfengine/dist
39+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/core install DESTDIR="$BASEDIR"/cfengine/dist
4040

4141
if [ "$NOVA" = yes ]; then
4242
echo "$(basename "$0"): Debug: Running make in enterprise repo..."
43-
run_and_print_on_failure $MAKE -C "$BASEDIR"/enterprise -k
43+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/enterprise -k
4444
echo "$(basename "$0"): Debug: Running make install in enterprise repo..."
45-
run_and_print_on_failure $MAKE -C "$BASEDIR"/enterprise install DESTDIR="$BASEDIR"/cfengine/dist
45+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/enterprise install DESTDIR="$BASEDIR"/cfengine/dist
4646
if [ "$ROLE" = hub ]; then
4747
echo "$(basename "$0"): Debug: Running make in nova repo..."
48-
run_and_print_on_failure $MAKE -C "$BASEDIR"/nova -k
48+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/nova -k
4949
echo "$(basename "$0"): Debug: Running make install in nova repo..."
50-
run_and_print_on_failure $MAKE -C "$BASEDIR"/nova install DESTDIR="$BASEDIR"/cfengine/dist
50+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/nova install DESTDIR="$BASEDIR"/cfengine/dist
5151
echo "$(basename "$0"): Debug: Running make install in masterfiles repo..."
52-
run_and_print_on_failure $MAKE -C "$BASEDIR"/masterfiles install DESTDIR="$BASEDIR"/cfengine/dist
52+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/masterfiles install DESTDIR="$BASEDIR"/cfengine/dist
5353
fi
5454
else
5555
echo "$(basename "$0"): Debug: Running make install in masterfiles repo..."
56-
run_and_print_on_failure $MAKE -C "$BASEDIR"/masterfiles install DESTDIR="$BASEDIR"/cfengine/dist
56+
run_and_print_on_failure "$MAKE" -C "$BASEDIR"/masterfiles install DESTDIR="$BASEDIR"/cfengine/dist
5757
fi

0 commit comments

Comments
 (0)