Skip to content

Commit f4a1bc8

Browse files
committed
Fix syntax errors
1 parent 0517564 commit f4a1bc8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -549,23 +549,23 @@ jobs:
549549
td=$TESTING_DEPTH
550550
551551
# Modify in place so that only modified modules are tested.
552-
if [[ -n "$test_files" && ! -n "$test_all"]]
552+
if [[ -n "$test_files" && ! -n "$test_all" ]];
553553
then {
554554
sed -i 's/skip_if_too_deep(5)/skip_if_too_deep(3)/g' "$test_files"
555555
TESTING_DEPTH=3
556-
echo "Testing with shinytest2 for $test_files"
556+
echo "Testing with shinytest2 for $test_files";
557557
} else {
558558
# Flag for helpers
559559
helper_modified="yes"
560560
git restore .
561561
echo "Run all tests"
562-
break
562+
break;
563563
} fi
564564
565565
# R file without corresponding test file: reset the testing depth
566-
if [[ -n "$helper_modified" || -n "$test_all"]]
566+
if [[ -n "$helper_modified" || -n "$test_all" ]];
567567
then {
568-
TESTING_DEPTH=td
568+
TESTING_DEPTH=td;
569569
} fi
570570
done
571571
shell: bash

0 commit comments

Comments
 (0)