fixes for bash script
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2022-10-27 14:11:09 +02:00
parent 23da59fec5
commit 09642eb6bf
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -2,7 +2,7 @@
# This is a helper script to install the compiles EIVE OBSW files # This is a helper script to install the compiles EIVE OBSW files
# into the yocto repository to re-generate the mission root filesystem # into the yocto repository to re-generate the mission root filesystem
build_dir=cmake-build-release-q7s build_dir=cmake-build-release-q7s
if [ ! -z ${1} && "${1}" == "em" ] || [[ ${EIVE_Q7S_EM} == "1" ]]; then if [[ ! -z ${1} && "${1}" == "em" ]] || [[ ${EIVE_Q7S_EM} == "1" ]]; then
echo "-I- Installing EM binaries" echo "-I- Installing EM binaries"
em_install="1" em_install="1"
build_dir=cmake-build-release-q7s-em build_dir=cmake-build-release-q7s-em
@ -17,7 +17,7 @@ q7s_package_path="q7s-package/${q7s_yocto_dir}"
obsw_version_filename="obsw_version.txt" obsw_version_filename="obsw_version.txt"
yocto_obsw_path="yocto/meta-eive/recipes-core/eive-obsw/files" yocto_obsw_path="yocto/meta-eive/recipes-core/eive-obsw/files"
variant_specific_path="" variant_specific_path=""
if [ ${em_install} == "1" ]; then if [[ ${em_install} == "1" ]]; then
variant_specific_path="${yocto_obsw_path}/em" variant_specific_path="${yocto_obsw_path}/em"
else else
variant_specific_path="${yocto_obsw_path}/fm" variant_specific_path="${yocto_obsw_path}/fm"