Skip to content

Commit

Permalink
Fix package-worker.ps1 to handle output path with ":" (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
imback82 authored Oct 13, 2020
1 parent 7bfd0bb commit 550835f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/package-worker.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ foreach ($framework in $frameworks)
# Generate additional tar.gz worker files only for linux-x64.
if ($runtime.Name.ToLower().Equals("linux-x64"))
{
tar czf "$output_dir/$filename.tar.gz" $worker_version_dir
tar czf "$output_dir/$filename.tar.gz" $worker_version_dir --force-local
}

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

0 comments on commit 550835f

Please sign in to comment.