mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-13 11:47:13 +01:00
Cleanup shebangs, add set -eou[x] pipefail to all files
This commit is contained in:
parent
c949351391
commit
65c5833fd9
@ -1,7 +1,5 @@
|
|||||||
#!/bin/bash -x
|
#!/bin/bash
|
||||||
set -euo pipefail
|
set -eoux pipefail
|
||||||
|
|
||||||
id
|
|
||||||
|
|
||||||
FACTORIO_VOL=/factorio
|
FACTORIO_VOL=/factorio
|
||||||
mkdir -p "$FACTORIO_VOL"
|
mkdir -p "$FACTORIO_VOL"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -eou pipefail
|
||||||
|
|
||||||
if [[ -f /run/secrets/username ]]; then
|
if [[ -f /run/secrets/username ]]; then
|
||||||
USERNAME=$(cat /run/secrets/username)
|
USERNAME=$(cat /run/secrets/username)
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
#!/bin/bash -x
|
#!/bin/bash
|
||||||
if [ -z "$1" ]; then
|
set -eoux pipefail
|
||||||
echo "No argument supplied"
|
echo "No argument supplied"
|
||||||
fi
|
fi
|
||||||
SERVER_SCENARIO="$1"
|
SERVER_SCENARIO="$1"
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
id
|
id
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash -x
|
#!/bin/bash
|
||||||
if [ -z "$1" ]; then
|
set -eoux pipefail
|
||||||
echo "No argument supplied"
|
echo "No argument supplied"
|
||||||
fi
|
fi
|
||||||
SERVER_SCENARIO="$1"
|
SERVER_SCENARIO="$1"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -eou pipefail
|
||||||
|
|
||||||
FACTORIO_VERSION=$1
|
FACTORIO_VERSION=$1
|
||||||
MOD_DIR=$2
|
MOD_DIR=$2
|
||||||
|
Loading…
Reference in New Issue
Block a user