mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
15 lines
333 B
Bash
Executable file
15 lines
333 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ISEMU=${1:-0}
|
|
|
|
export DOCKER_BUILDKIT=1
|
|
docker build . -t smoo-client-build
|
|
docker run --rm \
|
|
-u $(id -u):$(id -g) \
|
|
-v "/$PWD/":/app/ \
|
|
-e ISEMU=${ISEMU} \
|
|
smoo-client-build \
|
|
;
|
|
docker rmi smoo-client-build
|
|
|
|
cp -r ./romfs/ ./starlight_patch_*/atmosphere/contents/0100000000010000/.
|