mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 06:34:17 +03:00
24 lines
494 B
Bash
Executable File
24 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
TRAVIS_TAG=${TRAVIS_TAG:-$(git describe --tags)}
|
|
TRAVIS_TAG=${TRAVIS_TAG:-$(date +'%Y%m%d-%H%M%S')-$(git log --format=%h -1)}
|
|
|
|
bash -x ./install.sh
|
|
|
|
HERE=$(pwd)
|
|
|
|
case $OSTYPE in
|
|
darwin*)
|
|
(cd $HOME/Applications && zip -r $HERE/WezTerm-macOS-$TRAVIS_TAG.zip WezTerm.app)
|
|
;;
|
|
msys)
|
|
zipdir=WezTerm-windows-$TRAVIS_TAG
|
|
mkdir zipdir
|
|
cp target/release/wezterm.exe target/release/wezterm.pdb $zipdir
|
|
7z a -tzip $zipdir.zip $zipdir
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|