diff options
| -rw-r--r-- | other/config_directory.bat | 2 | ||||
| -rw-r--r-- | other/icons/teeworlds.rc | 2 | ||||
| -rw-r--r-- | scripts/make_src.py | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/other/config_directory.bat b/other/config_directory.bat index 0aab3cda..96a9ec81 100644 --- a/other/config_directory.bat +++ b/other/config_directory.bat @@ -1 +1 @@ -@start explorer %APPDATA%\Teewars +@start explorer %APPDATA%\Teeworlds diff --git a/other/icons/teeworlds.rc b/other/icons/teeworlds.rc index 46c2f62a..a4eab1f9 100644 --- a/other/icons/teeworlds.rc +++ b/other/icons/teeworlds.rc @@ -1 +1 @@ -50h ICON "teewars.ico" \ No newline at end of file +50h ICON "teeworlds.ico" diff --git a/scripts/make_src.py b/scripts/make_src.py index fd769b99..ba192c61 100644 --- a/scripts/make_src.py +++ b/scripts/make_src.py @@ -1,5 +1,9 @@ import os, shutil, zipfile, sys +if len(sys.argv) <= 1: + print "%s VERSION [SVN TREE]" % sys.argv[0] + sys.exit(-1) + version = sys.argv[1] svn_tree = "tags/release-%s" % version |