mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-13 05:19:59 +00:00
14 lines
273 B
Bash
14 lines
273 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Setting permissions..."
|
||
|
chmod +x build_luaj.sh
|
||
|
chmod +x deploy.sh
|
||
|
chmod +x gradlew
|
||
|
|
||
|
echo "Setting up IntelliJ development environment with gradle..."
|
||
|
rm -rf build
|
||
|
./gradlew setupDecompWorkspace --refresh-dependencies
|
||
|
./gradlew cleanIdea idea
|
||
|
|
||
|
echo "Done."
|