We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a4a56f commit 603beb8Copy full SHA for 603beb8
1 file changed
kbuilder.sh
@@ -18,6 +18,9 @@ RED='\e[1;31m'
18
YELLOW='\e[01;33m'
19
STOCK='\e[1;0m'
20
21
+# Enable debug early if env var is set
22
+[[ $KBUILDER_DEBUG == 1 ]] && set -x
23
+
24
# Build configuration
25
BUILDER_VERSION=0.0.1
26
WORK_DIRECTORY=$(pwd)
@@ -214,7 +217,7 @@ if [[ $BUILD_FLAG == true ]]; then
214
217
215
218
# Now, update the FLAGS array with the new flags
216
219
FLAGS=("${new_flags[@]}")
-
220
221
PATH="/usr/lib/ccache/bin:${PATH}" make "${DEFCONFIG}" all -j"$(nproc --all --ignore=2)" "${FLAGS[@]}"
222
else
223
make "${DEFCONFIG}" all -j"$(nproc --all --ignore=2)" "${FLAGS[@]}"
0 commit comments