mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Merge branch 'master' of http://github.com/oy/teeworlds
This commit is contained in:
commit
91bba50056
|
@ -1,4 +1,7 @@
|
|||
import sys, os
|
||||
import os, re, sys
|
||||
match = re.search("(.*?)/[^/]*?$", sys.argv[0])
|
||||
if match != None:
|
||||
os.chdir(os.getcwd() + "/" + match.group(1))
|
||||
|
||||
source_exts = [".c", ".cpp", ".h"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue