-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[Packaging] Support Windows ZIP package #27911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
452a3dc
Init
bebound 181d34b
Beta test
bebound 2125e39
Minor fix
bebound 74aa576
Add test
bebound fda9040
Minor fix
bebound 33b2cf7
Add test
bebound 79e3c18
Use 7z
bebound ef1f743
Add upgrade
bebound d926724
Minor fix
bebound 72667ad
Minor fix
bebound deb94ac
Use LZMA
bebound 7ed5497
Minor fix
bebound 63207d3
Add azps_zip.ps1
bebound 6fa7aa4
Remove x86
bebound 0956882
Minor fix
bebound 52552df
Minor fix
bebound 3e6f1b5
Minor fix
bebound dd0f8bc
Merge branch 'dev' into zip
bebound 95264cd
Remove root folder, use bin folder
bebound ac32b2d
MInor fix
bebound 6fb6c8e
MInor fix
bebound File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev
Previous commit
MInor fix
- Loading branch information
commit 6fb6c8ef0fb056bf58799f691dbcaf73ecaff31b
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I use
echoinstead ofREM, the(Windows binaries) folderwill be parsed andfolder was unexpected at this time.error will be raised. It seems there are some special rules when parentheses block is executed.Repro script:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you truly need to use
echo, you may quote the sentence:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly. (Generally,
echois able to print multiple word without the quote: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/echo)In this instance, since the line functions more as a comment, so I changed it to
REM.