We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 22f2386 + 411140f commit 4514742Copy full SHA for 4514742
tools/update_apps_inventory.sh
@@ -1,5 +1,5 @@
1
#!/usr/bin/env bash
2
-# ./scripts/update_apps_inventory.sh
+# ./tools/update_apps_inventory.sh
3
# Full rebuild each run, availability only (no description/homepage).
4
# Output: ./rcac_apps_inventory.json
5
# Requires: jq
@@ -53,7 +53,7 @@ trap 'rm -f "$NEW_TMP" "$OLD_FILE"' EXIT
53
find "$MODULEDIR" -type l -exec test ! -e {} \; -print -delete 2>/dev/null
54
55
# Collect all entries
56
-find "$MODULEDIR" -type f -name "*.lua" ! -name "default" -print0 |
+find "$MODULEDIR" \( -type f -o -type l \) -name "*.lua" ! -name "default" -print0 |
57
while IFS= read -r -d '' filepath; do
58
skip_file "$filepath" && continue
59
0 commit comments