Skip to content

Commit

Permalink
[travis] Only set -v on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
thislooksfun committed Nov 29, 2017
1 parent 4f1d98c commit 1d2044a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
6 changes: 5 additions & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

set -ev
if [[ $CI == true ]]; then
set -ev
else
set -e
fi
6 changes: 5 additions & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash

set -ev
if [[ $CI == true ]]; then
set -ev
else
set -e
fi

git clone https://github.com/thislooksfun/compiled_mustache.wiki.git
grind doc_benchmark_wiki
Expand Down
6 changes: 5 additions & 1 deletion scripts/doc.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

set -ev
if [[ $CI == true ]]; then
set -ev
else
set -e
fi
6 changes: 5 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash

set -ev
if [[ $CI == true ]]; then
set -ev
else
set -e
fi

chmod +x scripts/build.sh
chmod +x scripts/deploy.sh
Expand Down
6 changes: 5 additions & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

set -ev
if [[ $CI == true ]]; then
set -ev
else
set -e
fi

0 comments on commit 1d2044a

Please sign in to comment.