mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-16 06:44:52 +00:00
7d497f2835
Updated the source code to the version shipped as the 1.80pr0 alpha release. Also removed some unnecessary files from the LuaJ subfolder which were bulking up the repository.
15 lines
320 B
Bash
Executable File
15 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Setting permissions..."
|
|
chmod +x codesize.sh
|
|
chmod +x build_luaj.sh
|
|
chmod +x deploy.sh
|
|
chmod +x gradlew
|
|
|
|
echo "Setting up IntelliJ development environment with gradle..."
|
|
rm -rf build
|
|
./gradlew --stacktrace setupDecompWorkspace --refresh-dependencies
|
|
./gradlew --stacktrace cleanIdea idea
|
|
|
|
echo "Done."
|