Skip to content

Commit 0249fcb

Browse files
authored
Merge pull request #74 from OpenVoxProject/fix_tag_task
Fix for tag rake task
2 parents 13dc90f + 07c0b9d commit 0249fcb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/tag.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def set_version(version)
22
data = File.read('project.clj')
33
data = data.sub(/\(def pdb-version "[^"]*"/,"(def pdb-version \"#{version}\"")
44
File.write('project.clj', data)
5-
run_command("git add project.clj && git commit -m 'Set version to #{version}'", true)
5+
run_command("git add project.clj && git commit -m 'Set version to #{version}'", silent: true)
66
end
77

88
namespace :vox do
@@ -36,4 +36,4 @@ namespace :vox do
3636
run_command("git push origin && git push origin #{args[:tag]}")
3737
end
3838
end
39-
end
39+
end

0 commit comments

Comments
 (0)