This commit is contained in:
2023-11-25 08:44:23 -06:00
parent 010b284c92
commit d3fa93811c

View File

@@ -271,13 +271,7 @@ update_stock_maps() {
} }
main() { main() {
echo "MODLISTS: $MODLISTS" check || die "Failed to pass health checks"
ls "$MODLISTS" | xargs
echo
echo '--------'
echo
ls $MODLISTS | xargs
# check || die "Failed to pass health checks"
# lock_remote_server # lock_remote_server
@@ -285,14 +279,16 @@ main() {
# update_game # update_game
# update_stock_maps # update_stock_maps
# for server in $(ls "$MODLISTS" | xargs) ; do for server in $(ls "$MODLISTS" | xargs) ; do
# if [ ! -f "$MODLISTS/$server" ] ; then if [ ! -f "$MODLISTS/$server" ] ; then
# msg "Could not find modlist for: $MODLISTS/$server" msg "Could not find modlist for: $MODLISTS/$server"
# continue continue
# fi fi
# update_mods_for_server "$server"
# unset server echo "FOUND: $server"
# done # update_mods_for_server "$server"
# unset server
done
# unlock_remote_server # unlock_remote_server
} }