Skip to content

Commit da20dfd

Browse files
win flag to continue when artifacts is not found
1 parent 44784db commit da20dfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/l10n.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ jobs:
317317
$SCRIPT_EXIT_CODE = $_.Exception.HResult
318318
}
319319
}
320-
rm artifacts/assets -r -Force
321-
Get-ChildItem -Path "artifacts" | ForEach-Object {
320+
rm artifacts/assets -r -Force -ErrorAction SilentlyContinue
321+
Get-ChildItem -Path "artifacts" -ErrorAction SilentlyContinue | ForEach-Object {
322322
$destPath = "artifacts-win\" + $_.Name
323323
if (-not (Test-Path -Path $destPath)) {
324324
try {

0 commit comments

Comments
 (0)