27 lines
445 B
Bash
Executable File
27 lines
445 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Extremely simple helper: add the local tweaks via Pakku.
|
|
PAKKU_JAR="$(dirname "$0")/../pakku.jar"
|
|
|
|
mods=(
|
|
auroras
|
|
blaze-map
|
|
caelum
|
|
cartography
|
|
clumps
|
|
crash-assistant
|
|
crash-utilities
|
|
cupboard
|
|
headlight
|
|
precision-prospecting
|
|
smooth-chunk-save
|
|
tfc-caelum
|
|
tfc-volcanoes
|
|
zume
|
|
)
|
|
|
|
java -jar "$PAKKU_JAR" add ${mods[*]} -y
|
|
|
|
java -jar "$PAKKU_JAR" add prj --mr distanthorizons --cf distant-horizons -y
|
|
|