mirror of
https://github.com/chocolate-doom/statcheck.git
synced 2024-11-10 07:12:09 +00:00
Suppress source port output, just show command.
This commit is contained in:
parent
7d0a36dca1
commit
5a0c33a256
2 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ output: $(OUTPUTS)
|
|||
|
||||
output/%.txt: demos/%.lmp $(SOURCE_PORT)
|
||||
@mkdir -p $(dir $@)
|
||||
./testrunner $< $@
|
||||
@./testrunner $< $@
|
||||
|
||||
.depends: makedepends
|
||||
./makedepends $@
|
||||
|
|
|
@ -24,6 +24,6 @@ if "gameversion" in cfg:
|
|||
if "pwad" in cfg:
|
||||
args.extend(("-file", join("extract", cfg["pwad"])))
|
||||
|
||||
print(shlex.join(args))
|
||||
sys.stdout.close()
|
||||
os.spawnvp(os.P_WAIT, args[0], args)
|
||||
command = shlex.join(args) + " >/dev/null 2>&1"
|
||||
print(command)
|
||||
os.system(command)
|
||||
|
|
Loading…
Reference in a new issue