Github not respecting -e in shebang
This commit is contained in:
ReenigneArcher 2022-01-11 00:46:47 -05:00
parent 51b7dc5b5c
commit 5dfd5d8027
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#/bin/bash -e
#!/bin/bash -e
set -e
usage() {
echo "Usage: $0 [OPTIONS]"

View File

@ -1,4 +1,5 @@
#!/bin/bash -e
set -e
CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}"
SUNSHINE_EXECUTABLE_PATH="${SUNSHINE_EXECUTABLE_PATH:-/usr/bin/sunshine}"

View File

@ -1,4 +1,5 @@
#/bin/bash -e
#!/bin/bash -e
set -e
usage() {
echo "Usage: $0"