-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix the syntax in if_else.sh The test script `if_else.sh` has incorrect syntax for an if statement: $ bash if_else.sh if_else.sh: line 2: syntax error near unexpected token `then' if_else.sh: line 2: `if [[ $FOO -eq 1 ]] then' The correct syntax uses `;` before `then`. * fix if syntax * Added from_file to TestBuilder and minor fix in if parser * Update function name to script_file due to from_* conflict --------- Co-authored-by: Ondřej Čertík <[email protected]>
- Loading branch information
1 parent
1113c78
commit c35f348
Showing
4 changed files
with
73 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,41 @@ | ||
FOO=2 | ||
if [[ $FOO -eq 1 ]] then | ||
if [[ $FOO -eq 1 ]]; | ||
then | ||
echo "FOO is 1"; | ||
elif [[ $FOO -eq 2 ]]; | ||
then | ||
echo "FOO is 2"; | ||
else | ||
echo "FOO is not 1 or 2"; | ||
fi | ||
|
||
FOO=2 | ||
if [[ $FOO -eq 1 ]]; then | ||
echo "FOO is 1" | ||
elif [[ $FOO -eq 2 ]] then | ||
elif [[ $FOO -eq 2 ]]; then | ||
echo "FOO is 2" | ||
else | ||
echo "FOO is not 1 or 2" | ||
fi | ||
|
||
FOO=2 | ||
if [[ $FOO -eq 1 ]]; | ||
then | ||
echo "FOO is 1"; | ||
elif [[ $FOO -eq 2 ]]; | ||
then | ||
echo "FOO is 2"; | ||
else | ||
echo "FOO is not 1 or 2"; | ||
fi | ||
|
||
FOO=2 | ||
if [[ $FOO -eq 1 ]] | ||
then | ||
echo "FOO is 1"; | ||
elif [[ $FOO -eq 2 ]] | ||
then | ||
echo "FOO is 2"; | ||
else | ||
echo "FOO is not 1 or 2"; | ||
fi |