related: I’ve been poking around with the install-nginx
script, and I found a minor logic error: the cleanup line that’s supposed to delete the nginx source from /tmp/
actually doesn’t do anything.
There is no /tmp/nginx/
directory: it’s /tmp/nginx-$VERSION/
(at the moment it’s /tmp/nginx-1.17.4/
and there’s also the tarball /tmp/nginx-1.17.4.tar.gz
).
I think you mean this instead:
rm -fr /tmp/nginx-${VERSION}*