This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
set -e | |
# Respect PREFIX if set, otherwise default to /usr/local | |
if [ -z "${PREFIX}" ]; then | |
PREFIX="/usr/local" | |
fi | |
# Respect TMPDIR if set, otherwise default to /tmp |