Sign in
fuchsia
/
third_party
/
github.com
/
bazelbuild
/
rules_python
/
b1fb23bc41b451aece46f8d24f09e63b312388bb
/
.
/
python
/
private
/
pypi
/
repack_whl.ps1
blob: 2f3b4ada0f06695f212de2572ef609682df2589b [
file
]
param
(
[
string
]
$Output
)
$files
=
Get
-
ChildItem
-
Path
.
-
Exclude
'tmp.zip'
,
$Output
Compress
-
Archive
-
Path
$files
-
DestinationPath
'tmp.zip'
-
Force
Move
-
Item
-
Path
'tmp.zip'
-
Destination
$Output
-
Force