Skip to content

Commit

Permalink
ninja: disable line-clearing with TERM=dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
milahu committed Jun 25, 2022
1 parent 4f1156a commit 20f3160
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/tools/build-managers/ninja/setup-hook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ninjaBuildPhase() {
)

echoCmd 'build flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}" | cat
TERM=dumb ninja "${flagsArray[@]}"

runHook postBuild
}
Expand All @@ -33,7 +33,7 @@ ninjaInstallPhase() {
)

echoCmd 'install flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}" | cat
TERM=dumb ninja "${flagsArray[@]}"

runHook postInstall
}
Expand Down Expand Up @@ -67,7 +67,7 @@ ninjaCheckPhase() {
)

echoCmd 'check flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}" | cat
TERM=dumb ninja "${flagsArray[@]}"
fi

runHook postCheck
Expand Down

0 comments on commit 20f3160

Please sign in to comment.