mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-11-20 08:10:11 +00:00
10 lines
234 B
Bash
Executable File
10 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
# Basic start script for running MultiMC with the libs packaged with it.
|
|
|
|
MMC_DIR=$(dirname "$0")
|
|
cd "${MMC_DIR}"
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./lib"
|
|
export QT_PLUGIN_PATH=$QT_PLUGIN_PATH:"."
|
|
exec ./bin/MultiMC
|