Skip to content

Commit a151005

Browse files
committed
Fix syntax problems..
1 parent 123af45 commit a151005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-check-install.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,14 +552,14 @@ jobs:
552552
553553
test_dir="tests/testthat/"
554554
555-
if [ -z "${ALL_CHANGED_FILES} ]
555+
if [ -z "${ALL_CHANGED_FILES}" ]
556556
then {
557557
echo "No R files affected: test everything."
558558
exit 0
559559
} fi
560560
561561
# Loop through each modified file and determine which tests to run
562-
for file in "${ALL_CHANGED_FILES}"; do
562+
for file in $ALL_CHANGED_FILES; do
563563
564564
echo "Check for $file"
565565

0 commit comments

Comments
 (0)