Skip to content

Commit d0b3869

Browse files
committed
Fix variable expansion
1 parent b93b042 commit d0b3869

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/dunedaq-develop-cpp-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ jobs:
241241
}
242242
243243
diff_file_name=linting_diff.txt
244-
pr_linting_results_file=$(find pull_request_linting/ -name "$REPO_linting.log" | tail -n 1)
245-
nightly_linting_results_file=$(find nightly_linting/ -name "$REPO_linting.log" | tail -n 1)
244+
pr_linting_results_file=$(find pull_request_linting/ -name "${REPO}_linting.log" | tail -n 1)
245+
nightly_linting_results_file=$(find nightly_linting/ -name "${REPO}_linting.log" | tail -n 1)
246246
247247
[[ -f "$pr_linting_results_file" ]] || echo "ERROR: No PR results file; exit 1"
248248
[[ -f "$nightly_linting_results_file" ]] || echo "ERROR: No nightly results file; exit 2"

0 commit comments

Comments
 (0)