Skip to content

Commit d9b70d1

Browse files
committed
use repos from openvoxproject
1 parent e328752 commit d9b70d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/puppet_references.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def self.build_puppet_references(commit)
3737
PuppetReferences::Puppet::Functions
3838
]
3939
config = PuppetReferences::Config.read
40-
repo = PuppetReferences::Repo.new('puppet', PUPPET_DIR, nil, config['puppet']['repo'])
40+
repo = PuppetReferences::Repo.new('openvox', PUPPET_DIR, nil, config['puppet']['repo'])
4141
real_commit = repo.checkout(commit)
4242
repo.update_bundle
4343
build_from_list_of_classes(references, real_commit)

lib/puppet_references/repo.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def initialize(name, directory, sources = nil, config = nil)
1313
if sources
1414
@sources = [sources].flatten
1515
else
16-
@sources = ["git@github.com:puppetlabs/#{@name}.git"]
16+
@sources = ["git@github.com:openvoxproject/#{@name}.git"]
1717
end
1818
@main_source = @sources[0]
1919
unless Dir.exist?(@directory + '.git') || @config['skip_download']
@@ -52,4 +52,4 @@ def update_bundle
5252
end
5353

5454
end
55-
end
55+
end

0 commit comments

Comments
 (0)