diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-06-13 23:56:54 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-13 23:56:54 +0200 |
commit | d1bef5e312083c4a95a7ff5ecadfe6b4d53e34af (patch) | |
tree | 0fb37ae8b042f8434cf1496c9565012c943235a8 | |
parent | 8bc040c70b0ef8655495dc741c0cb3eb3152f9ed (diff) | |
download | jenkins.debian.net-d1bef5e312083c4a95a7ff5ecadfe6b4d53e34af.tar.xz |
reproducible Debian: fix typo
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_node_health_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_node_health_check.sh b/bin/reproducible_node_health_check.sh index 9936a0f4..12a5f218 100755 --- a/bin/reproducible_node_health_check.sh +++ b/bin/reproducible_node_health_check.sh @@ -41,7 +41,7 @@ set -e # is the filesystem writetable? # echo "$(date -u) - testing whether /tmp is writable..." -$TEST=$(mktemp --tmpdir=/tmp rwtest-XXXXXX) +TEST=$(mktemp --tmpdir=/tmp rwtest-XXXXXX) if [ -z "$TEST" ] ; then echo "Failure to write a file in /tmp, assuming read-only filesystem." exit 1 |