We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13dc90f + 07c0b9d commit 0249fcbCopy full SHA for 0249fcb
tasks/tag.rake
@@ -2,7 +2,7 @@ def set_version(version)
2
data = File.read('project.clj')
3
data = data.sub(/\(def pdb-version "[^"]*"/,"(def pdb-version \"#{version}\"")
4
File.write('project.clj', data)
5
- run_command("git add project.clj && git commit -m 'Set version to #{version}'", true)
+ run_command("git add project.clj && git commit -m 'Set version to #{version}'", silent: true)
6
end
7
8
namespace :vox do
@@ -36,4 +36,4 @@ namespace :vox do
36
run_command("git push origin && git push origin #{args[:tag]}")
37
38
39
-end
+end
0 commit comments