Skip to content

Commit

Permalink
Update install_tsl.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
JPietrzykTUD authored Sep 6, 2024
1 parent f8e0a40 commit 405b62d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/install_tsl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ curl -L "https://github.com/db-tu-dresden/TSL/releases/latest/download/detect_fl
chmod +x ${TMP_DIR}/detect_flags.sh

#create array from flags string
# AVAIL_FLAGS=($(${TMP_DIR}/detect_flags.sh))
IFS=' ' read -r -a AVAIL_FLAGS <<< "$(${TMP_DIR}/detect_flags.sh)"
DETECTED_FLAGS$=$(${TMP_DIR}/detect_flags.sh)
if [ $? != 0 ]; then
echo "Could not detect any flags."
exit 1
fi
IFS=' ' read -r -a AVAIL_FLAGS <<< "${DETECTED_FLAGS}"
unset IFS


Expand Down

0 comments on commit 405b62d

Please sign in to comment.