7 lines
No EOL
227 B
Bash
7 lines
No EOL
227 B
Bash
#!/bin/bash
|
|
set -e
|
|
elapseio=${ELAPSEIO_ENABLE:-false}
|
|
if [ "$elapseio" = true ]; then
|
|
cp ../elapseio.dll $dir/game/bin
|
|
sed -i '/^\[mercuryio\]/,/^path=/ s/^path=/path=elapseio.dll/' $dir/game/bin/segatools-netenv.ini
|
|
fi |