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