repared the build script bug

This commit is contained in:
2021-08-04 17:49:47 +02:00
parent 6648fbc5b6
commit 018efba6b2
7 changed files with 54 additions and 32 deletions

View File

@ -18,6 +18,12 @@ fi
build_generator="Unix Makefiles"
os_fsfw="linux"
builddir="build-Debug"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.
else
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command

View File

@ -18,6 +18,12 @@ fi
build_generator="Unix Makefiles"
os_fsfw="linux"
builddir="build-Release"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.
else
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command

View File

@ -18,6 +18,12 @@ fi
build_generator="Ninja"
os_fsfw="linux"
builddir="build-Debug"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.
else
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command