mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
15 lines
164 B
Text
15 lines
164 B
Text
|
#!/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
|