aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sh28
1 files changed, 15 insertions, 13 deletions
diff --git a/build.sh b/build.sh
index 37489d5..2c480cb 100644
--- a/build.sh
+++ b/build.sh
@@ -1,14 +1,16 @@
#!/bin/bash
-#echo 'Building Program...'
-#echo 'Shell: Bash'
-#if [ -d "out" ]
-#then
-#echo 'Skipping making the "out" directory...'
-#else
-#mkdir out
-#echo 'Created the "out" folder..'
-#fi
-#g++ --version
-#g++ -g main.cpp -o out/game.exe
-#echo 'Building Complete!'
-#read -p 'Press any key to finish...' \ No newline at end of file
+<<COMMENT
+echo 'Building Program...'
+echo 'Shell: Bash'
+if [ -d "out" ]
+then
+echo 'Skipping making the "out" directory...'
+else
+mkdir out
+echo 'Created the "out" folder..'
+fi
+g++ --version
+g++ -g main.cpp -o out/game.exe
+echo 'Building Complete!'
+read -p 'Press any key to finish...'
+COMMENT \ No newline at end of file