summaryrefslogtreecommitdiff
path: root/subplot/bumper.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-22 05:43:18 +0000
committerLars Wirzenius <liw@liw.fi>2021-04-22 05:43:18 +0000
commit4427fe12410f911a9c8f18ea7b3c9643c88f6d5f (patch)
treee05affad9e645047bddee6a93ca69e11445f50fa /subplot/bumper.py
parent1600a727446867029451df6f8a181b5a07709efb (diff)
parent24574aef2299925c10eeb9d20a942f36d1d806d4 (diff)
downloadbumper-rs-4427fe12410f911a9c8f18ea7b3c9643c88f6d5f.tar.gz
Merge branch 'tagname-take2' into 'main'
make git tag name be configurable via a template Closes #1 See merge request larswirzenius/bumper!19
Diffstat (limited to 'subplot/bumper.py')
-rw-r--r--subplot/bumper.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/subplot/bumper.py b/subplot/bumper.py
index 3edad5e..3c2f8fd 100644
--- a/subplot/bumper.py
+++ b/subplot/bumper.py
@@ -11,6 +11,10 @@ def install_bumper(ctx):
runcmd_prepend_to_path(ctx, dirname=os.path.join(srcdir, "target", "debug"))
+def chmod_exec(ctx, filename=None):
+ os.chmod(filename, 0o755)
+
+
def git_init_and_commit_everything(ctx, dirname=None):
runcmd_run = globals()["runcmd_run"]
runcmd_exit_code_is_zero = globals()["runcmd_exit_code_is_zero"]