-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Description
Enhancement Type
Improve an existing feature
Describe the enhancement
after i PR this #1792
I thought it should work, so i didn't try.
docker-minecraft-server/scripts/start-spiget
Lines 124 to 135 in 5e25532
| if [[ ${SPIGET_RESOURCES} ]]; then | |
| if isTrue "${REMOVE_OLD_MODS:-false}"; then | |
| removeOldMods /data/plugins | |
| REMOVE_OLD_MODS=false | |
| fi | |
| log "Getting plugins via Spiget" | |
| IFS=',' read -r -a resources <<<"${SPIGET_RESOURCES}" | |
| for resource in "${resources[@]}"; do | |
| getResourceFromSpiget "${resource}" | |
| done | |
| fi |
but today i try and is not redownload
I wonder after removeOldMods (Line 126), is that set REMOVE_OLD_MODS back to false (Line 127), so that is not work.