Add bash strict options.

This commit is contained in:
2024-12-31 11:03:56 +01:00
parent 46376f9242
commit 81af13a1ae
9 changed files with 27 additions and 5 deletions

View File

@ -1,4 +1,7 @@
#!/bin/sh
#!/bin/bash
set -euo pipefail
[ "$#" -eq 0 ] &&
echo "Requires a command. Run with 'help' for a list of commands." &&
exit 1