We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ee8fe commit a303e16Copy full SHA for a303e16
main.mjs
@@ -21,7 +21,7 @@ async function main() {
21
Invoke-RestMethod -Uri '${urlBase}.zip' -OutFile elvish.zip
22
Expand-Archive elvish.zip -DestinationPath .
23
rm elvish.zip
24
- if (!Test-Path elvish.exe -PathType leaf) {
+ if (!(Test-Path elvish.exe -PathType leaf)) {
25
Rename-Item -Path elvish-${version}.exe -NewName elvish.exe
26
}
27
`);
0 commit comments