Skip to content

Commit

Permalink
Fix printing
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Feb 9, 2024
1 parent 4ac8bc9 commit 9b12ee0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/deploy_teleporter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ while [ $# -gt 0 ]; do
--help)
printHelp && exit 0 ;;
*)
echo "Invalid option: -$1" && printHelp && exit 1;;
echo "Invalid option: $1" && printHelp && exit 1;;
esac
shift
done
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ while [ $# -gt 0 ]; do
-h | --help)
printHelp ;;
*)
echo "Invalid option: -$1" && printHelp && exit 1;;
echo "Invalid option: $1" && printHelp && exit 1;;
esac
shift
done
Expand Down

0 comments on commit 9b12ee0

Please sign in to comment.