Skip to content

Commit 550835f

Browse files
authored
Fix package-worker.ps1 to handle output path with ":" (#742)
1 parent 7bfd0bb commit 550835f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/package-worker.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ foreach ($framework in $frameworks)
1717
# Generate additional tar.gz worker files only for linux-x64.
1818
if ($runtime.Name.ToLower().Equals("linux-x64"))
1919
{
20-
tar czf "$output_dir/$filename.tar.gz" $worker_version_dir
20+
tar czf "$output_dir/$filename.tar.gz" $worker_version_dir --force-local
2121
}
2222

2323
Compress-Archive -DestinationPath "$output_dir/$filename.zip" -Path $worker_version_dir -CompressionLevel Optimal

0 commit comments

Comments
 (0)