From aac53f1cc9e957284312005ed45ea714b790906f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Albert=20Gr=C3=A4f?= <aggraef@gmail.com>
Date: Tue, 24 Jan 2017 09:52:24 +0100
Subject: [PATCH] Cosmetic changes (indentation; superflous trailing
 semicolon).

---
 packages/darwin_app/Makefile | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile
index f173750b0..3852c0d92 100644
--- a/packages/darwin_app/Makefile
+++ b/packages/darwin_app/Makefile
@@ -112,14 +112,13 @@ darwin_app_wrapper: Info.plist
 	# Now change the localized app name in Resources/*.lproj from nwjs
 	# to "Purr Data". For some reason "CFBundleDisplayName" doesn't accept
 	# spaces so we give it "PurrData"
-	for file in $(BUILD_BASE)/*.app/Contents/Resources/*.lproj/InfoPlist.strings; \
-		do \
-			plutil -convert json "$$file"; \
-			LC_ALL=C sed -i.bak 's/"CFBundleName":"nwjs"/"CFBundleName":"Purr Data"/g' "$$file"; \
-			LC_ALL=C sed -i.bak 's/"CFBundleDisplayName":"nwjs"/"CFBundleDisplayName":"PurrData"/g' "$$file"; \
-			rm "$$file".bak; \
-			plutil -convert binary1 "$$file"; \
-	done;
+	for file in $(BUILD_BASE)/*.app/Contents/Resources/*.lproj/InfoPlist.strings; do \
+		plutil -convert json "$$file"; \
+		LC_ALL=C sed -i.bak 's/"CFBundleName":"nwjs"/"CFBundleName":"Purr Data"/g' "$$file"; \
+		LC_ALL=C sed -i.bak 's/"CFBundleDisplayName":"nwjs"/"CFBundleDisplayName":"PurrData"/g' "$$file"; \
+		rm "$$file".bak; \
+		plutil -convert binary1 "$$file"; \
+	done
 
 #------------------------------------------------------------------------------#
 # generate Info.plist using PD_APP_NAME and PD_VERSION
-- 
GitLab