bbgo_origin/desktop/build-osx-info-plist.sh

16 lines
398 B
Bash
Raw Normal View History

2021-02-14 17:55:59 +00:00
#!/bin/bash
cat << EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>bbgo-desktop</string>
<key>CFBundleIconFile</key>
<string>icon.icns</string>
<key>CFBundleIdentifier</key>
<string>com.bbgo.lorca</string>
</dict>
</plist>
EOF