mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "`dirname $(readlink -f ${0})`/../.."
|
|
|
|
docker run \
|
|
-v "`pwd`:/build/chiaki" \
|
|
-w "/build/chiaki" \
|
|
-ti -p 28771:28771 \
|
|
--entrypoint /opt/devkitpro/tools/bin/nxlink \
|
|
thestr4ng3r/chiaki-build-switch \
|
|
"$@" -s /build/chiaki/build_switch/switch/chiaki.nro
|
|
|