Skip to content

Commit 1fd36b1

Browse files
authored
Merge pull request #104 from blackducksoftware/OTWO-5524
Fix to no such tag errors with BZR tarballs
2 parents 6003fea + 44ffaa4 commit 1fd36b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ohloh_scm/adapters/bzr/misc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def is_merge_commit?(commit)
3131
end
3232

3333
def export_tag(dest_dir, tag_name)
34-
run "cd '#{path}' && bzr export -r tag:#{tag_name} #{dest_dir}"
34+
run "cd '#{path}' && bzr export -r #{tag_name} #{dest_dir}"
3535
end
3636

3737
def export(dest_dir, token=head_token)

lib/ohloh_scm/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module OhlohScm
22
module Version
3-
STRING = '2.5.0'
3+
STRING = '2.5.1'
44
end
55
end

0 commit comments

Comments
 (0)