From a1176d5df1c54d66bbe0cebaee4046382f6d5d4b Mon Sep 17 00:00:00 2001 From: Sander Tolsma Date: Fri, 23 Feb 2018 07:42:13 +0100 Subject: [PATCH] Fix wrong filetest for postinstall.sh The wrong filename was tested for existence. --- builds/any/installer/installer.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/any/installer/installer.sh.in b/builds/any/installer/installer.sh.in index c66ccbe4..470bc882 100644 --- a/builds/any/installer/installer.sh.in +++ b/builds/any/installer/installer.sh.in @@ -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