Add script/bundle, which creates a macOS app bundle
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
pushd zed
|
||||
cargo bundle --release
|
||||
popd
|
||||
|
||||
while getopts o flag
|
||||
do
|
||||
case "${flag}" in
|
||||
o) open target/release/bundle/osx;;
|
||||
esac
|
||||
done
|
||||
Reference in New Issue
Block a user