You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
319 B
7 lines
319 B
#!/bin/zsh
|
|
# create the restictray.app folder using "fyne package -os darwin -icon icon.png", see https://developer.fyne.io/started/packaging
|
|
rm -rf restictray.app
|
|
fyne package -os darwin -icon icon-big.png
|
|
cp build/Info.plist ./restictray.app/Contents/Info.plist
|
|
cp build/restic ./restictray.app/Contents/MacOS/restic
|