tup: generate verbose build scripts in setup hook
This allows the build commands to be debugged more easily.
This commit is contained in:
parent
1f9af33e1f
commit
94c54c379a
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ tupConfigurePhase() {
|
||||||
echo "${tupConfig-}" >> tup.config
|
echo "${tupConfig-}" >> tup.config
|
||||||
|
|
||||||
tup init
|
tup init
|
||||||
tup generate tupBuild.sh
|
tup generate --verbose tupBuild.sh
|
||||||
|
|
||||||
runHook postConfigure
|
runHook postConfigure
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ tupBuildPhase() {
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
|
|
||||||
pushd .
|
pushd .
|
||||||
. tupBuild.sh
|
./tupBuild.sh
|
||||||
popd
|
popd
|
||||||
|
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
|
|
Loading…
Reference in a new issue