Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Add missing suffix to exe
Browse files Browse the repository at this point in the history
  • Loading branch information
swsnr committed Aug 25, 2018
1 parent b876838 commit 9625087
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ install:
build_script:
- cargo build --release --verbose
after_build:
- 7z a .\%APPVEYOR_REPO_TAG_NAME%-windows.zip %APPVEYOR_BUILD_FOLDER%\target\release\mdcat %APPVEYOR_BUILD_FOLDER%\README.md %APPVEYOR_BUILD_FOLDER%\CHANGELOG.md %APPVEYOR_BUILD_FOLDER%\LICENSE
# The leading '.\' is important to avoid a command error with -windows being
# interpreted as flag if APPVEYOR_REPO_TAG_NAME is empty.
- 7z a .\%APPVEYOR_REPO_TAG_NAME%-windows.zip %APPVEYOR_BUILD_FOLDER%\target\release\mdcat.exe %APPVEYOR_BUILD_FOLDER%\README.md %APPVEYOR_BUILD_FOLDER%\CHANGELOG.md %APPVEYOR_BUILD_FOLDER%\LICENSE
test_script:
- cargo test --verbose
- cargo run -- sample/common-mark.md
Expand Down

0 comments on commit 9625087

Please sign in to comment.