We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b51b78e commit 437cc87Copy full SHA for 437cc87
.github/workflows/release.yaml
@@ -94,6 +94,8 @@ jobs:
94
- name: Test copy, move, and remove
95
shell: pwsh
96
run: |
97
+ $testDir = "C:\test_busybox"
98
+ Set-Location -Path $testDir
99
$binary = "C:\busybox64.exe"
100
# Copy file1.txt to copy_file1.txt
101
& $binary cp file1.txt copy_file1.txt
@@ -110,6 +112,8 @@ jobs:
110
112
- name: Test command chaining and redirection
111
113
114
115
116
117
118
& $binary sh -c "echo 'line1' > chain.txt"
119
& $binary sh -c "echo 'line2' >> chain.txt"
0 commit comments