Print command-line used when building example gamebook.

This commit is contained in:
Pelle Nilsson 2013-06-29 22:05:12 +02:00
parent 5aa26167b5
commit 03acdf1938
1 changed files with 4 additions and 2 deletions

View File

@ -18,5 +18,7 @@ if __name__ == '__main__':
optionsfile = open(optionsfilename)
options += ' ' + ' '.join(optionsfile.readlines())
optionsfile.close()
os.system("python2.7 ./formatgamebook.py %s %s %s" % (
options, infile, outfile))
command = "python2.7 ./formatgamebook.py %s %s %s" % (
options, infile, outfile)
print command
os.system(command)