parent
761e2470d4
commit
b522231c88
2 changed files with 13 additions and 2 deletions
@ -0,0 +1,11 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
import sys, subprocess |
||||
|
||||
if sys.platorm() == 'win32': |
||||
cmd = ['xcopy', '/?'] |
||||
else: |
||||
cmd = ['env'] |
||||
|
||||
rc = subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) |
||||
sys.exit(rc.returncode) |
Loading…
Reference in new issue