Remove extra U from log message (#13514)
Nicholas Chambers committed
Aug 13, 2022 at 07:22 UTC
5cc0eefe5e136e74d028a5f5652c5129bfc71609
1 file changed
+1
-1
netdata-installer.sh
+1
-1
@@ -79,7 +79,7 @@ _cannot_use_tmpdir() {
79
if [ -z "${TMPDIR}" ] || _cannot_use_tmpdir "${TMPDIR}"; then
80
if _cannot_use_tmpdir /tmp; then
81
if _cannot_use_tmpdir "${PWD}"; then
82
- fatal "UUnable to find a usable temporary directory. Please set \$TMPDIR to a path that is both writable and allows execution of files and try again." I0000
82
+ fatal "Unable to find a usable temporary directory. Please set \$TMPDIR to a path that is both writable and allows execution of files and try again." I0000
83
else
84
TMPDIR="${PWD}"
85
fi