diff options
author | Nils Dagsson Moskopp <nils@dieweltistgarnichtso.net> | 2018-10-20 18:12:12 +0200 |
---|---|---|
committer | Nils Dagsson Moskopp <nils@dieweltistgarnichtso.net> | 2018-10-20 18:12:12 +0200 |
commit | 308326c458b5089fe8e26e2547a10e86e3db04e1 (patch) | |
tree | 1b24762315ef79fd9000d24e5226030346bcbc07 /dofile-in-python/target.do | |
parent | 0703144d9083cc23a38fe6e49e532f0bdddef22b (diff) |
+ test handling of dofiles written in Python 3.5
Diffstat (limited to 'dofile-in-python/target.do')
-rw-r--r-- | dofile-in-python/target.do | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dofile-in-python/target.do b/dofile-in-python/target.do new file mode 100644 index 0000000..5f0fadb --- /dev/null +++ b/dofile-in-python/target.do @@ -0,0 +1,6 @@ +#!/usr/bin/env python3.5 +from subprocess import run +from datetime import datetime + +run(['redo-ifchange', 'source']) +print(datetime.now().timestamp()) |