Skip to content

Commit 4514742

Browse files
Merge pull request #34 from Guangzhen-Jin/default_app
Also scan lua links for app versions.
2 parents 22f2386 + 411140f commit 4514742

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/update_apps_inventory.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# ./scripts/update_apps_inventory.sh
2+
# ./tools/update_apps_inventory.sh
33
# Full rebuild each run, availability only (no description/homepage).
44
# Output: ./rcac_apps_inventory.json
55
# Requires: jq
@@ -53,7 +53,7 @@ trap 'rm -f "$NEW_TMP" "$OLD_FILE"' EXIT
5353
find "$MODULEDIR" -type l -exec test ! -e {} \; -print -delete 2>/dev/null
5454

5555
# Collect all entries
56-
find "$MODULEDIR" -type f -name "*.lua" ! -name "default" -print0 |
56+
find "$MODULEDIR" \( -type f -o -type l \) -name "*.lua" ! -name "default" -print0 |
5757
while IFS= read -r -d '' filepath; do
5858
skip_file "$filepath" && continue
5959

0 commit comments

Comments
 (0)