blob: 7fba62ef6f4515c00cf065e9bddcc67e81d5a4f9 (
plain) (
blame)
1
2
3
4
5
6
7
|
cargo install --path mingling_cli
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/
}
|