12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## Minecraft Land Generator - GitHub Commit Changes Script
|
|
## Morlok8k - Updated 5/31/2012
|
|
|
|
git add .
|
|
git commit -a
|
|
git push origin master
|
|
echo Pausing for 20sec
|
|
sleep 20
|
|
|