Skip to content

Commit

Permalink
fix script execution
Browse files Browse the repository at this point in the history
  • Loading branch information
jackshirazi committed Nov 14, 2024
1 parent 47dfe87 commit 48c627c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/operator/match_and_execute.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MATCHES=$(sed -n '/```/,/```/p' $FILE_GUIDE | perl -pe 's/^\s*//; s/\s*\\\s*\n/
if [ $MATCHES -eq 1 ]
then
echo "Executing '$EXECUTION_LINE'"
$($EXECUTION_LINE)
eval "$EXECUTION_LINE"
else
echo "Couldn't find '$EXECUTION_LINE' in '$FILE_GUIDE' so aborting"
exit 1
Expand Down

0 comments on commit 48c627c

Please sign in to comment.