From 93bb74add8ad8348d6b477dd7528c632013d7558 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 15 Aug 2018 17:45:29 +1200 Subject: [PATCH] Fix aven-create-app to not delete converted icons Typo spotted by Robert Jones. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 9f7f5bd5..71f11daf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,7 +40,7 @@ create-aven-app: unzip -d '$(APP_PATH)/Contents/Resources' "$$zip"; \ i=`echo "$$zip"|sed 's!.*/\(.*\)\.zip$$!\1!'`; \ iconutil --convert icns '$(APP_PATH)/Contents/Resources/'"$$i"; \ - rm -rf '$(APP_PATH)/Contents/Resources/'"$i"; \ + rm -rf '$(APP_PATH)/Contents/Resources/'"$$i"; \ done mingw : all mingw_iss -- 2.11.4.GIT