1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-25 22:33:52 +03:00

remove stale install.sh

This commit is contained in:
Wez Furlong 2020-10-05 08:52:42 -07:00
parent aad493ab2a
commit e2e46cb50d

View File

@ -1,17 +0,0 @@
#!/bin/bash
case $OSTYPE in
darwin*)
cargo build --release
mkdir -p $HOME/Applications
APP=$HOME/Applications/WezTerm.app
rm -rf $APP
cp -r assets/macos/WezTerm.app $APP && \
cp target/release/wezterm $APP && \
echo "Installed to $APP"
;;
*)
echo "Don't know how to install the app on this system"
exit 1
;;
esac