From f67d9613f72d38d94d2e2df000f3c64077848148 Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Fri, 7 Jul 2017 14:48:24 +0200 Subject: [PATCH] Fix a stupid error in the installer thing --- AppVeyor/make_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppVeyor/make_installer.sh b/AppVeyor/make_installer.sh index b95fad4..93aa335 100644 --- a/AppVeyor/make_installer.sh +++ b/AppVeyor/make_installer.sh @@ -6,7 +6,7 @@ function addFile { function addAllFiles { find $1 -type f -iname $2 | while read -r filename; do - addFile filename + addFile $filename done }