Skip to content

Commit 34d5e5e

Browse files
committed
Add capabilities to support multiple requirements files
1 parent 3cd1a0f commit 34d5e5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ message: If you use this software, please cite it using these metadata.
33
title: JSON Lint
44
abstract: A tool to lint your JSON files with jq.
55
type: software
6-
version: 0.1.0
7-
date-released: 2024-05-22
6+
version: 0.1.1
7+
date-released: 2024-06-24
88
repository-code: https://github.com/CICDToolbox/json-lint
99
keywords:
1010
- "Wolf Software"

pipeline.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ function install_prerequisites()
273273
fail "${CMD[*]}" "${errors}" true
274274
exit "${EXIT_VALUE}"
275275
fi
276-
done < <(find . -name 'requirements.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true)
276+
done < <(find . -name 'requirements*.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true)
277277
fi
278278
}
279279

0 commit comments

Comments
 (0)