Skip to content

Commit

Permalink
Better alternative URIParser.escape
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Apr 5, 2017
1 parent c13c284 commit 1ec486f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"TimeZones\", coverage=true)"

after_test:
- C:\projects\julia\bin\julia -e "cd(Pkg.dir(\"TimeZones\")); Pkg.add(\"Coverage\"); using Coverage;
- C:\projects\julia\bin\julia -e "cd(Pkg.dir(\"TimeZones\")); Pkg.add(\"Coverage\"); Pkg.add(\"URIParser\"); using Coverage, URIParser;
Codecov.submit_generic(process_folder(),
service=\"appveyor\",
branch=ENV[\"APPVEYOR_REPO_BRANCH\"],
commit=ENV[\"APPVEYOR_REPO_COMMIT\"],
pull_request=get(ENV, \"APPVEYOR_PULL_REQUEST_NUMBER\", \"\"),
job=join([ENV[\"APPVEYOR_ACCOUNT_NAME\"], ENV[\"APPVEYOR_PROJECT_SLUG\"], ENV[\"APPVEYOR_BUILD_VERSION\"]], \"%%2F\"),
job=escape(join([ENV[\"APPVEYOR_ACCOUNT_NAME\"], ENV[\"APPVEYOR_PROJECT_SLUG\"], ENV[\"APPVEYOR_BUILD_VERSION\"]], '/'),
slug=ENV[\"APPVEYOR_REPO_NAME\"],
build=ENV[\"APPVEYOR_JOB_ID\"],
build=escape(ENV[\"APPVEYOR_JOB_ID\"]),
)"

0 comments on commit 1ec486f

Please sign in to comment.