Skip to content

Commit

Permalink
fix file names
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jul 5, 2024
1 parent 5f371e2 commit dc49a76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions planemo_ci_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ if [ "$MODE" == "lint" ]; then
mapfile -t REPO_ARRAY < repository_list.txt
for DIR in "${REPO_ARRAY[@]}"; do
if [ "$WORKFLOWS" != "true" ]; then
cat .lint_skip >> "$DIR"/.tt_skip
cat "$DIR"/.tt_skip
(planemo shed_lint --tools --ensure_metadata --urls --skip_file "$DIR"/.tt_skip --report_level "$REPORT_LEVEL" --fail_level "$FAIL_LEVEL" --recursive "$DIR" "${ADDITIONAL_PLANEMO_OPTIONS[@]}" | tee -a lint_report.txt) || lint_fail=true
cat .lint_skip >> "$DIR"/.lint_skip
cat "$DIR"/.lint_skip
(planemo shed_lint --tools --ensure_metadata --urls --skip_file "$DIR"/.lint_skip --report_level "$REPORT_LEVEL" --fail_level "$FAIL_LEVEL" --recursive "$DIR" "${ADDITIONAL_PLANEMO_OPTIONS[@]}" | tee -a lint_report.txt) || lint_fail=true
else
(planemo workflow_lint --report_level "$REPORT_LEVEL" --fail_level "$FAIL_LEVEL" "$DIR" "${ADDITIONAL_PLANEMO_OPTIONS[@]}" | tee -a lint_report.txt) || lint_fail=true
fi
Expand Down

0 comments on commit dc49a76

Please sign in to comment.