Merge pull request #314 from stolsma/patch-1

Fix wrong filetest for postinstall.sh
This commit is contained in:
Jeffrey Townsend
2018-02-23 12:08:35 -08:00
committed by GitHub

View File

@@ -578,7 +578,7 @@ if test -f "$postinst"; then
fi
installer_unzip $installer_zip postinstall.sh || :
if test -f preinstall.sh; then
if test -f postinstall.sh; then
chmod +x postinstall.sh
./postinstall.sh $rootdir
fi