Skip to content

Commit

Permalink
Fix bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ugyballoons committed Dec 11, 2024
1 parent 260d3e4 commit be9828d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install-exp_checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
set -x

# exp_checker only runs at USDF
if [ -n "${!RAPID_ANALYSIS_LOCATION}" ] && [ "${!RAPID_ANALYSIS_LOCATION}" == "USDF" ]; then
if [ -n "${RAPID_ANALYSIS_LOCATION}" ] && [ "${RAPID_ANALYSIS_LOCATION}" == "USDF" ]; then
cd /usr/src/rubintv
git clone https://github.com/lsst-sitcom/rubin_exp_checker.git exp_checker
cd exp_checker
Expand Down

0 comments on commit be9828d

Please sign in to comment.