Skip to content

Commit 30804f9

Browse files
committed
Add more pipefail
1 parent ed68445 commit 30804f9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

bin/common/.local/bin/fastmail-check-unread

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -eu -o pipefail
44

55
token="$1"
66

bin/common/.local/bin/lsp-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -eu -o pipefail
44

55
# NOTE: Remember to add to completions when adding a new server type
66

bin/common/.local/bin/nvim-nightly-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -eu -o pipefail
44

55
NVIM_INSTALL_PATH="/opt/nvim"
66

install/arch/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -eu -o pipefail
44

55
if [ "$(id -u)" -ne 0 ]; then
66
echo "The script needs to be run as root."

install/arch/install_as_user.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -eu -o pipefail
44

55
if [ "$(id -u)" -eq 0 ]; then
66
echo "The script is running as root, please run as a the user."

0 commit comments

Comments
 (0)