Skip to content

Commit fdc13bb

Browse files
committed
Fix 'push_artifacts' invocation - remove backslashes
The YAML string literal notation used strips newlines, so there is no need for backslashes.
1 parent 20a88ad commit fdc13bb

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.travis.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ script:
1919

2020
after_success:
2121
- ./push_artifacts/git_config_kaitai_bot
22-
- ./push_artifacts/publish \
23-
-o kaitai-io \
24-
-r ide-kaitai-io.github.io \
25-
-d "$([ "$TRAVIS_BRANCH" != stable ] && echo devel)" \
26-
-m "Regen $TRAVIS_BRANCH kaitai-io/kaitai_struct_webide@$TRAVIS_COMMIT" \
27-
-- --exclude=.git --exclude=CNAME --exclude=.nojekyll --exclude=devel out/
22+
- ./push_artifacts/publish
23+
-o kaitai-io
24+
-r ide-kaitai-io.github.io
25+
-d "$([ "$TRAVIS_BRANCH" != stable ] && echo devel)"
26+
-m "Regen $TRAVIS_BRANCH kaitai-io/kaitai_struct_webide@$TRAVIS_COMMIT"
27+
--
28+
--exclude=.git
29+
--exclude=CNAME
30+
--exclude=.nojekyll
31+
--exclude=devel
32+
out/

0 commit comments

Comments
 (0)