From 8281cdb106c98f72638139db735263642e36f19e Mon Sep 17 00:00:00 2001 From: Christian Baer Date: Sat, 26 Sep 2020 08:00:25 +0200 Subject: [PATCH] Move downloaded apps do /Applications instead of opening them in mac.sh --- init/mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/mac.sh b/init/mac.sh index d7dfc5f..b8e2579 100755 --- a/init/mac.sh +++ b/init/mac.sh @@ -226,7 +226,7 @@ done # Install *.app find $MAC_DOWNLOAD -name "*.app" -print0 | while IFS= read -r -d '' f; do echo ">>> Processing ${f}" - open -a "${f}" + sudo mv "${f}" /Applications/ done #rm -rf $MAC_DOWNLOAD