nesi / puppet-git

22 stars 49 forks source link

${target} should probably be ${path} #8

Closed mykelalvis closed 11 years ago

mykelalvis commented 11 years ago

No patch, but in manifests/repo.pp lines 44-48

    if $bare {
      $init_cmd = "${git::params::bin} init --bare ${target}"
    } else {
      $init_cmd = "${git::params::bin} init ${target}"
    }

If ${target} is a magic variable or gets set elsewhere, I can't find it. I think ${path} is what is needed there but I'm not entirely sure.