Skip to content

Commit

Permalink
Fix 'push_artifacts' invocation - remove backslashes
Browse files Browse the repository at this point in the history
The YAML string literal notation used strips newlines, so there is no
need for backslashes.
  • Loading branch information
generalmimon committed Sep 3, 2021
1 parent 20a88ad commit fdc13bb
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ script:

after_success:
- ./push_artifacts/git_config_kaitai_bot
- ./push_artifacts/publish \
-o kaitai-io \
-r ide-kaitai-io.github.io \
-d "$([ "$TRAVIS_BRANCH" != stable ] && echo devel)" \
-m "Regen $TRAVIS_BRANCH kaitai-io/kaitai_struct_webide@$TRAVIS_COMMIT" \
-- --exclude=.git --exclude=CNAME --exclude=.nojekyll --exclude=devel out/
- ./push_artifacts/publish
-o kaitai-io
-r ide-kaitai-io.github.io
-d "$([ "$TRAVIS_BRANCH" != stable ] && echo devel)"
-m "Regen $TRAVIS_BRANCH kaitai-io/kaitai_struct_webide@$TRAVIS_COMMIT"
--
--exclude=.git
--exclude=CNAME
--exclude=.nojekyll
--exclude=devel
out/

0 comments on commit fdc13bb

Please sign in to comment.