forked from kazzmir/paintown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d637e05
commit 0f13177
Showing
3 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
# If you are trying to compile Paintown from source but have no idea what to do | ||
# try running this script. It will attempt to install all the dependencies you | ||
# need and compile Paintown. | ||
|
||
echo This script uses 'sudo' to install packages. 'sudo' temporarily elevates | ||
echo your priveleges so that new packages can be installed on your system. | ||
echo When prompted for a password type the password you use to login. | ||
|
||
cd editor && ./gradlew build && cp build/libs/editor.jar . | ||
|
||
ls -l *.jar | ||
echo "Here is the executable. To run it type: cd editor && ./run.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
# Ignore Gradle build output directory | ||
build | ||
.idea | ||
editor.jar |