Add shebang to update Node modules script

This commit is contained in:
Henry Mercer 2024-06-11 11:48:24 +01:00
parent 358d5e7087
commit 2838cede68

View file

@ -1,3 +1,6 @@
#!/bin/bash
set -eu
if [ "$1" != "update" && "$1" != "check-only" ]; then
>&2 echo "Failed: Invalid argument. Must be 'update' or 'check-only'"
exit 1