11 lines
No EOL
473 B
Bash
Executable file
11 lines
No EOL
473 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
if command -v "MercuryModder" &> /dev/null; then
|
|
echo -e "\033[0;32m✓\033[0m MercuryModder is installed"
|
|
else
|
|
echo -e "\033[0;31m✗\033[0m MercuryModder is NOT installed"
|
|
exit 127
|
|
fi
|
|
MercuryModder prepare --tracks ../imagestore/misc/customcharts
|
|
MercuryModder check --tracks ../imagestore/misc/customcharts
|
|
MercuryModder modify --tracks ../imagestore/misc/customcharts --gameDir $dir/game/WindowsNoEditor --output $dir/game/WindowsNoEditor |