浏览代码

Remove branch logic from deploy script

the branch logic lives in main.sh, so no need to check again
pull/576/head
Dave Machado 6 年前
父节点
当前提交
367de578e6
找不到此签名对应的密钥 GPG 密钥 ID: 948D4778D01A7B3F
共有 1 个文件被更改,包括 0 次插入6 次删除
  1. +0
    -6
      build/deploy.sh

+ 0
- 6
build/deploy.sh 查看文件

@@ -2,12 +2,6 @@

set -o errexit -o nounset

if [ "$TRAVIS_BRANCH" != "master" ]
then
echo "This commit was made against $TRAVIS_BRANCH and not master! No deploy!"
exit 0
fi

rev=$(git rev-parse --short HEAD)

mkdir deploy


正在加载...
取消
保存