blob: 293874615bc2cc8725c041ecb24eb599ff38b007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
me="$(realpath "$(dirname "$0")")"
if [ ! -d "$1" ]; then
echo "$0: No such file or directory"
exit
fi
if [ ! -f "$1/Contents/Frameworks/Electron Framework.framework/Electron Framework" ]; then
echo "$0: Application is not a valid Atomic application"
exit
fi
original=$(du -hs "$1" | awk '{print $1;}')
executable=""
for i in "$1/Contents/MacOS/"*; do executable="$i"; done
echo "$0: Executable found at $executable"
echo "$0: Copying launcher"
rm -f "$executable"
cp "$me/launcher-darwin-arm64" "$executable"
echo "$0: Removing built-in Electron"
rm -rf "$1/Contents/Frameworks"
for i in "$1/Contents/Resources/"*; do
if [[ "$i" == */app ]] || [[ "$i" == */electron.icns ]]; then
true
else
rm -rf "$i"
fi
done
new=$(du -hs "$1" | awk '{print $1;}')
echo "$0: Completed. Was $original, is now $new."
|