aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-15 16:15:45 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-15 16:15:45 +0000
commit91afef5ee59ca08b66fb0ce8bd42b08004cc315e (patch)
treeec46506c0db229b74e99d3306ce80937fe897150 /python
parentAdd first version of release script (diff)
downloadSyncRNG-91afef5ee59ca08b66fb0ce8bd42b08004cc315e.tar.gz
SyncRNG-91afef5ee59ca08b66fb0ce8bd42b08004cc315e.zip
bugfix release script
Diffstat (limited to 'python')
-rw-r--r--python/make_release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/make_release.py b/python/make_release.py
index 67e179e..40a1fd4 100644
--- a/python/make_release.py
+++ b/python/make_release.py
@@ -122,7 +122,7 @@ class CopyFile(Step):
self._target = target
def action(self, context):
- self.do_cmd(f"cp -v {self.source} {self.target}")
+ self.do_cmd(f"cp -v {self._source} {self._target}")
class RunTests(Step):