summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-09-20 10:27:10 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-09-20 10:34:13 +0200
commit98a89dd0fa340e852f7a5633d2d68885c0e52219 (patch)
tree89475d8036490ee63ed2a45298e816bc3fe389be
parent9035c20888736180f58becb5dedd3957470b5476 (diff)
downloademacs-98a89dd0fa340e852f7a5633d2d68885c0e52219.tar.gz
Use "set -o nounset" in bash scripts
* admin/automerge: * admin/make-manuals: * admin/update-copyright: * admin/update_autogen: * admin/upload-manuals: Use "set -o nounset".
-rwxr-xr-xadmin/automerge2
-rwxr-xr-xadmin/make-manuals2
-rwxr-xr-xadmin/update-copyright2
-rwxr-xr-xadmin/update_autogen2
-rwxr-xr-xadmin/upload-manuals1
5 files changed, 9 insertions, 0 deletions
diff --git a/admin/automerge b/admin/automerge
index 99191867367..c7c17dfb5ec 100755
--- a/admin/automerge
+++ b/admin/automerge
@@ -35,6 +35,8 @@
## it with the -d option in the repository directory, in case a pull
## updates this script while it is working.
+set -o nounset
+
die () # write error to stderr and exit
{
[ $# -gt 0 ] && echo "$PN: $*" >&2
diff --git a/admin/make-manuals b/admin/make-manuals
index 8085412cc8a..cb0c00a423f 100755
--- a/admin/make-manuals
+++ b/admin/make-manuals
@@ -33,6 +33,8 @@
### Code:
+set -o nounset
+
die () # write error to stderr and exit
{
[ $# -gt 0 ] && echo "$PN: $@" >&2
diff --git a/admin/update-copyright b/admin/update-copyright
index 5a04847a661..8b7c05749d0 100755
--- a/admin/update-copyright
+++ b/admin/update-copyright
@@ -31,6 +31,8 @@
# updated and some should not be, due to registration numbers, so
# this script leaves these copyright years alone for now.
+set -o nounset
+
: ${UPDATE_COPYRIGHT_USE_INTERVALS=1}
export UPDATE_COPYRIGHT_USE_INTERVALS
diff --git a/admin/update_autogen b/admin/update_autogen
index 24513671712..8bfbdc92e9a 100755
--- a/admin/update_autogen
+++ b/admin/update_autogen
@@ -32,6 +32,8 @@
### Code:
+set -o nounset
+
die () # write error to stderr and exit
{
[ $# -gt 0 ] && echo "$PN: $@" >&2
diff --git a/admin/upload-manuals b/admin/upload-manuals
index 1b7950ede80..50336ee64c0 100755
--- a/admin/upload-manuals
+++ b/admin/upload-manuals
@@ -36,6 +36,7 @@
### Code:
+set -o nounset
die () # write error to stderr and exit
{