mirror of
https://github.com/GlowstoneMC/Glowstone
synced 2026-08-19 08:23:05 -04:00
7 lines
147 B
Bash
Executable file
7 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
# Run script within the directory
|
|
BINDIR=$(dirname "$(readlink -fn "$0")")
|
|
cd "$BINDIR"
|
|
|
|
# Build Glowstone
|
|
(cd .. && ./gradlew assemble)
|