Commit 0b849d13 authored by Petr Pacner's avatar Petr Pacner

test of replacing touch on windows

parent 148f0b98
...@@ -140,7 +140,7 @@ def mkdir_command(): ...@@ -140,7 +140,7 @@ def mkdir_command():
def touch_command(): def touch_command():
"""Get a string with the O.S. specific mkdir command""" """Get a string with the O.S. specific mkdir command"""
if check_windows_commands(): if check_windows_commands():
return "type nul >>" return "touch >>"
else: else:
return "touch" return "touch"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment