aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/cli.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/cli.py b/cli/cli.py
index 0de89048..232bca1b 100644
--- a/cli/cli.py
+++ b/cli/cli.py
@@ -148,3 +148,8 @@ def touch(filename):
os.rename(fullpath, new_fullpath)
sys.stderr.write("%srenamed to %s%s\n" % (YELLOW, new_filename, RESET))
return 0
+
+
+def touch_cli(args):
+ """CLI wrapper around touch."""
+ touch(args.filename)