summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorRhody Lugo <rhodylugo@gmail.com>2018-06-21 00:33:25 -0400
committerRhody Lugo <rhodylugo@gmail.com>2018-06-21 03:00:33 -0400
commit920224a535f7858dd4bf39f04e3c90c8276503c3 (patch)
treed1f1a52a960146cbd8de2076819fa09e45f7bdba /methods.py
parenta9acdd84b7a6fd074f21d500a64976326f6cbb67 (diff)
downloadredot-engine-920224a535f7858dd4bf39f04e3c90c8276503c3.tar.gz
add NoCache wrapper to Command
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/methods.py b/methods.py
index 6dca826b2b..227a17d312 100644
--- a/methods.py
+++ b/methods.py
@@ -1329,3 +1329,8 @@ def add_program(env, name, sources, **args):
program = env.Program(name, sources, **args)
env.NoCache(program)
return program
+
+def CommandNoCache(env, target, sources, command, **args):
+ result = env.Command(target, sources, command, **args)
+ env.NoCache(result)
+ return result