mirror of
https://github.com/Nostalgica-Reverie/Content-Monorepo.git
synced 2026-05-12 17:42:00 +00:00
8 lines
332 B
Bash
8 lines
332 B
Bash
#!/bin/bash
|
|
echo Updating
|
|
(cd ./modpacks/simply && pw batch update -a -y && pw batch refresh -y) &
|
|
(cd ./modpacks/rc-plus && pw batch update -a -y && pw batch refresh -y) &
|
|
(cd ./modpacks/2k && pw batch update -a -y && pw batch refresh -y) &
|
|
(cd ./modpacks/rekindled && pw batch update -a -y && pw batch refresh -y) &
|
|
wait
|
|
echo Done |