Merge pull request #2016 from pi-hole/bugfix/mktemp

Bugfix mktmp > mktemp
This commit is contained in:
Mark Drobnak 2018-03-02 16:03:11 -05:00 committed by GitHub
commit e3e5e016d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1752,7 +1752,7 @@ FTLinstall() {
fi
# Move into the temp ftl directory
pushd "$(mktmp -d)" || { echo "Unable to make temporary directory for FTL binary download"; return 1; }
pushd "$(mktemp -d)" || { echo "Unable to make temporary directory for FTL binary download"; return 1; }
# Always replace pihole-FTL.service
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/pihole-FTL.service" "/etc/init.d/pihole-FTL"