We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63024bc commit 5104221Copy full SHA for 5104221
1 file changed
scripts/test.sh
@@ -7,13 +7,20 @@ mkdir -p .build
7
# caught by `mise run test`, not only by the release bundle build in CI.
8
bash scripts/build_swift.sh
9
10
-mapfile -t source_files < <(
+source_files=()
11
+while IFS= read -r file; do
12
+ source_files+=("${file}")
13
+done < <(
14
find Sources/AgentTally \
15
-name '*.swift' \
16
! -path 'Sources/AgentTally/App/*' \
17
| sort
18
)
-mapfile -t test_files < <(
19
+
20
+test_files=()
21
22
+ test_files+=("${file}")
23
24
find Tests \
25
26
! -name 'HarnessMain.swift' \
0 commit comments