bp fix for testing

This commit is contained in:
Etan Kissling 2022-11-14 22:13:30 +01:00
parent 07e37730c6
commit f223ea2c82
No known key found for this signature in database
GPG Key ID: B21DA824C5A3D03D
1 changed files with 3 additions and 2 deletions

View File

@ -67,7 +67,7 @@ add_submodule() {
$EXPORT_FUNC add_submodule
export NIMBUS_BUILD_SYSTEM=yes
echo "--noNimblePath" > nimbus-build-system.paths
echo "--noNimblePath" > nimbus-build-system.paths.tmp
for file in $(ls -d $PWD/vendor/*)
do
if uname | grep -qiE "mingw|msys"; then
@ -78,7 +78,8 @@ do
else
echo --path:"\"$file\""
fi
done >> nimbus-build-system.paths
done >> nimbus-build-system.paths.tmp
mv nimbus-build-system.paths{.tmp,}
if [[ $# == 1 && $1 == "bash" ]]; then
# the only way to change PS1 in a child shell, apparently