Files
oak-gpui/script/bundle
T

15 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