Sign in
◑
Theme
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_python
/
984d4852ed1d7084d8f80e63f1e71d383f5ab815
/
.
/
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