We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69ee06f + ccda1c7 commit 5eb00e0Copy full SHA for 5eb00e0
2 files changed
signals
tests/setup_test_environment.ps1
@@ -2,7 +2,9 @@
2
# Use with "source", don't run normally.
3
# Installs cwipc, creates a venv in .venv, and installs the cwipc python modules.
4
# Adds ./installed/bin to PATH
5
-Remove-Item .\cwipc-built -Recurse -Force
+If (Test-Path .\cwipc-built) {
6
+ Remove-Item .\cwipc-built -Recurse -Force
7
+}
8
curl.exe -L -o cwipc-built.zip https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-win10-nightly-built.zip
9
Expand-Archive -path .\cwipc-built.zip -Force
10
$lldash_dir = Join-Path $PWD installed
0 commit comments