We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70386d commit 272d309Copy full SHA for 272d309
deploy.sh
@@ -5,12 +5,12 @@ then
5
echo "Push generated dist folder"
6
git config --global user.email "[email protected]"
7
git config --global user.name "Travis CI"
8
- git clone --quiet --branch=${TRAVIS_BRANCH} https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} travis-build > /dev/null 2<&1
+ git clone --quiet --branch=${TRAVIS_BRANCH} https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} travis-build > /dev/null 2>&1
9
cd travis-build
10
ln -s ${TRAVIS_BUILD_DIR}/node_modules
11
npm run build
12
git add dist/
13
- git commit -am "Travis CI - [ci skip] - automatic dist folder"
+ git commit -am "Travis CI - [ci skip] - automatic dist folder" > /dev/null 2>&1
14
git push origin ${TRAVIS_BRANCH}
15
fi
16
0 commit comments