We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eacc438 commit 83223f0Copy full SHA for 83223f0
3 files changed
.gitignore
@@ -23,4 +23,6 @@ gradle-app.setting
23
# Ignore Gradle build output directory
24
build
25
26
-archive.zip
+archive.zip
27
+
28
+temp
app/src/main/java/io/github/project516/NumberGuessingGame/Main.java
@@ -41,7 +41,7 @@ public static void main(String[] args) {
41
42
} catch (Exception e) {
43
44
- System.out.println("\n\n=====Program Crashed!=====");
+ System.out.println("\n\n=====Program Crashed!=====\n\n");
45
46
e.printStackTrace();
47
package.sh
@@ -8,5 +8,6 @@ mkdir temp
8
cp -r app/build/libs/app.jar temp/app.jar
9
cp -r scripts/run.bat temp/run.bat
10
cp -r scripts/run.sh temp/run.sh
11
+cp -r README.md temp/README.txt
12
zip -r archive.zip temp/
13
rm -rf temp
0 commit comments