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
1818echo " build: Package version suffix is $suffix "
1919echo " build: Build version suffix is $buildSuffix "
2020
21- foreach ($src in ls src/* ) {
21+ foreach ($src in gci src/* ) {
2222 Push-Location $src
2323
2424 echo " build: Packaging project in $src "
@@ -35,7 +35,7 @@ foreach ($src in ls src/*) {
3535 Pop-Location
3636}
3737
38- foreach ($test in ls test/* .Tests) {
38+ foreach ($test in gci test/* .Tests) {
3939 Push-Location $test
4040
4141 echo " build: Testing project in $test "
@@ -46,7 +46,7 @@ foreach ($test in ls test/*.Tests) {
4646 Pop-Location
4747}
4848
49- foreach ($test in ls test/* .PerformanceTests) {
49+ foreach ($test in gci test/* .PerformanceTests) {
5050 Push-Location $test
5151
5252 echo " build: Building performance test project in $test "
You can’t perform that action at this time.
0 commit comments