Fix wrong filetest for postinstall.sh

The wrong filename was tested for existence.
This commit is contained in:
Sander Tolsma
2018-02-23 07:42:13 +01:00
committed by GitHub
parent c39007bda0
commit a1176d5df1

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