File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ $buildSuffix = @{ $true = "$($suffix)-$($commitHash)"; $false = "$($branch)-$($c
18
18
echo " build: Package version suffix is $suffix "
19
19
echo " build: Build version suffix is $buildSuffix "
20
20
21
- foreach ($src in ls src/* ) {
21
+ foreach ($src in gci src/* ) {
22
22
Push-Location $src
23
23
24
24
echo " build: Packaging project in $src "
@@ -35,7 +35,7 @@ foreach ($src in ls src/*) {
35
35
Pop-Location
36
36
}
37
37
38
- foreach ($test in ls test/* .Tests) {
38
+ foreach ($test in gci test/* .Tests) {
39
39
Push-Location $test
40
40
41
41
echo " build: Testing project in $test "
@@ -46,7 +46,7 @@ foreach ($test in ls test/*.Tests) {
46
46
Pop-Location
47
47
}
48
48
49
- foreach ($test in ls test/* .PerformanceTests) {
49
+ foreach ($test in gci test/* .PerformanceTests) {
50
50
Push-Location $test
51
51
52
52
echo " build: Building performance test project in $test "
You can’t perform that action at this time.
0 commit comments