Skip to content

Commit

Permalink
Take 3
Browse files Browse the repository at this point in the history
  • Loading branch information
L1ghtmann committed Jul 28, 2024
1 parent 902b94f commit 2f66ebb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/dragon
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ if [[ $build -eq 1 ]]; then
mkdir -p "$i/$DRAGON_DIR/"
cp DragonMake "$i/$DRAGON_DIR/DragonMake" 2> /dev/null
fi
build $i $j
build $i $j || drexit 1
done

find . -name '.clean' -type f -delete
Expand Down
4 changes: 2 additions & 2 deletions src/dragon/shscripts/building
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ build()
fi

projroot="$(dirname "$DRAGON_DATA_DIR")"
env $'NINJA_STATUS=\x1b[1;34m[Dragon] \x1b[35m[%f/%t] \x1b[34m(%e)\x1b[0m ' CLICOLOR_FORCE=1 ninja -j$JOBS $NINJA_ARGS || cleanbuildfail $projroot; drexit 1
env $'NINJA_STATUS=\x1b[1;34m[Dragon] \x1b[34m>>>\x1b[0m ' CLICOLOR_FORCE=1 ninja -j$JOBS stage $NINJA_ARGS || cleanbuildfail $projroot; drexit 1
env $'NINJA_STATUS=\x1b[1;34m[Dragon] \x1b[35m[%f/%t] \x1b[34m(%e)\x1b[0m ' CLICOLOR_FORCE=1 ninja -j$JOBS $NINJA_ARGS || cleanbuildfail $projroot
env $'NINJA_STATUS=\x1b[1;34m[Dragon] \x1b[34m>>>\x1b[0m ' CLICOLOR_FORCE=1 ninja -j$JOBS stage $NINJA_ARGS || cleanbuildfail $projroot

if [[ $exportt -eq 1 ]]; then
prefix_print "Generating compile_commands.json"
Expand Down

0 comments on commit 2f66ebb

Please sign in to comment.