Skip to content

Commit

Permalink
Merge pull request NASA-LIS#740 from jvgeiger/fix/compile-script
Browse files Browse the repository at this point in the history
Replace "==" with "=" in compile script
  • Loading branch information
bmcandr authored Mar 8, 2021
2 parents ae95c35 + b3b33c0 commit 1966874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lis/compile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dashes="-------------------------------------------------------------------"
echo $dashes

# Sanity check
if [ "$skip_lis" == "YES" ] ; then
if [ "$skip_lis" = "YES" ] ; then
if [ "$compile_autotune" != "YES" ] ; then
echo "[ERR] Using -n without -u"
echo "Nothing will be compiled!"
Expand Down

0 comments on commit 1966874

Please sign in to comment.