#!/bin/sh APP="BBGO.app" APP_DIR=build/$APP go build -o $APP_DIR/Contents/MacOS/bbgo-desktop ./cmd/bbgo-desktop cat > $APP_DIR/Contents/Info.plist << EOF CFBundleExecutable bbgo-desktop CFBundleIconFile icon.icns CFBundleIdentifier com.bbgo.lorca EOF cp -v desktop/icons/icon.icns $APP_DIR/Contents/Resources/icon.icns find $APP_DIR