diff options
Diffstat (limited to 'bin')
-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 |