Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Update ModIdFinder.sh to include mod paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ari-steas authored May 6, 2024
1 parent 37c6783 commit ec4e3e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ModIdFinder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ while read path; do
if [[ $sbmiLine = \<Id\>* ]] ; then
tmp=${sbmiLine#*>}
modId=${tmp%<*}
MODIDARR+=({\"value\":$modId})
modPath=${path%/*}
MODIDARR+=({\"value\":$modId,\"path\":\"$modPath\"})
fi
done < "$path"
done < allModDatas.txt
Expand Down

0 comments on commit ec4e3e8

Please sign in to comment.