Skip to content

Commit

Permalink
add missing semi colon in travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 committed Oct 10, 2024
1 parent b730e36 commit ea4b17c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ after_success:
fi;
## publish latest website, variables below are secure environment variables which are unavailable to PRs from forks.
- if [ "$TRAVIS_BRANCH" = "master" ] && [ -z $TRAVIS_TAG ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
sed -i "s/Vector{UInt8}/Vector\{UInt8\}/g" docs/generators/julia-client.md
sed -i "s/Vector{UInt8}/Vector\{UInt8\}/g" docs/generators/julia-server.md
sed -i "s/Vector{UInt8}/Vector\{UInt8\}/g" docs/generators/julia-client.md;
sed -i "s/Vector{UInt8}/Vector\{UInt8\}/g" docs/generators/julia-server.md;
cd website;
git config --global user.name "${GH_NAME}";
git config --global user.email "${GH_EMAIL}";
Expand Down

0 comments on commit ea4b17c

Please sign in to comment.