mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-10 07:18:39 +00:00
5 lines
151 B
Python
5 lines
151 B
Python
import sys
|
|
from subprocess import call
|
|
print "scons --directory=.. " + " ".join(sys.argv[1:])
|
|
Exit(call(Split("scons --directory=..") + sys.argv[1:]))
|