small fix for yocto script
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2022-05-19 17:52:46 +02:00
parent e73bfc2c64
commit eb20dda221
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -2,8 +2,8 @@
# This is a helper script to install the compiles EIVE OBSW files
# into the yocto repository to re-generate the mission root filesystem
build_dir=cmake-build-release-q7s
if [ !-z ${1} ]; then
if [ ${1} == "em" ]; then
if [ ! -z ${1} ]; then
if [[ "${1}" == "em" ]]; then
echo "-I- Installing EM binaries"
build_dir=cmake-build-release-q7s-em
fi