blob: bebe9ff5290612f4e97bb045876c54f42c60354f (
plain) (
blame)
1
2
3
4
5
6
7
|
cargo install --path mling
New-Item -ItemType Directory -Force -Path .temp/comp | Out-Null
# Copy all files containing _comp from the debug directory
Get-ChildItem .temp/target/release/*_comp* | ForEach-Object {
Copy-Item $_.FullName .temp/comp/
}
|