blob: 235d17c5ca019f9d177eedbccf71f79159d593c4 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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
|