ci: do not stop if chmod check fails

pull/47/head
Robert Dailey 3 years ago
parent 94d3e66e46
commit c009e6c9b1

@ -17,7 +17,7 @@ dotnet publish src\Trash `
-p:PublishReadyToRun=true `
-p:PublishReadyToRunShowWarnings=true
if (Get-Command chmod) {
if (Get-Command chmod -errorAction SilentlyContinue) {
"The chmod command was found. Setting read + execute permission."
& chmod +rx ./publish/$runtime/trash
}

Loading…
Cancel
Save