Skip to content

Commit b7beca9

Browse files
authored
Small improvements (#8)
1 parent bd07eaf commit b7beca9

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/scripts/append-find-result.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ find . -type f -regex "${PARAM_FIND_CONFIG_REGEX}" \
77
echo "Config list ==="
88

99
cat "${PARAM_CONFIG_LIST_PATH}"
10+
11+
echo

src/scripts/append-fixed-paths.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ echo "${PARAM_FIND_CONFIG_REGEX}" >> "${PARAM_CONFIG_LIST_PATH}"
55
echo "Config list ==="
66

77
cat "${PARAM_CONFIG_LIST_PATH}"
8+
9+
echo

src/scripts/generate-config.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ echo "Config list ==="
44

55
cat "${PARAM_CONFIG_LIST_PATH}"
66

7+
echo
8+
79
echo "Generated YAML ==="
810

911
cat "${PARAM_CONFIG_LIST_PATH}" \
1012
| awk '{printf "\"%s\" ", $0}' \
1113
| xargs -0 -I {} sh -c 'cue export {} --out yaml' \
1214
| tee "${PARAM_GENERATED_CONFIG_PATH}"
15+
16+
echo

0 commit comments

Comments
 (0)