diff options
| author | Gary Larizza <gary@puppetlabs.com> | 2012-10-18 18:14:44 -0700 | 
|---|---|---|
| committer | Gary Larizza <gary@puppetlabs.com> | 2012-10-18 18:14:44 -0700 | 
| commit | 109d181b8ec6130151b2e8144cdaecf986a96075 (patch) | |
| tree | 755caffab203359dd813c30bb5fa9116a6e2fba3 /examples/git | |
| parent | 755b593dbd3588ec95d952228477f6df9d7ae328 (diff) | |
| parent | 3975481f29ac1908b253365c9939f671459b5302 (diff) | |
| download | puppet-vcsrepo-109d181b8ec6130151b2e8144cdaecf986a96075.tar.gz puppet-vcsrepo-109d181b8ec6130151b2e8144cdaecf986a96075.tar.bz2 | |
Merge pull request #31 from ghoneycutt/noticket/master/missing_trailing_comma
Adds comma to last attribute to comply with style
Diffstat (limited to 'examples/git')
| -rw-r--r-- | examples/git/bare_init.pp | 2 | ||||
| -rw-r--r-- | examples/git/clone.pp | 2 | ||||
| -rw-r--r-- | examples/git/working_copy_init.pp | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/examples/git/bare_init.pp b/examples/git/bare_init.pp index f16d137..4166f6e 100644 --- a/examples/git/bare_init.pp +++ b/examples/git/bare_init.pp @@ -1,4 +1,4 @@  vcsrepo { '/tmp/vcstest-git-bare':    ensure   => bare, -  provider => git +  provider => git,  } diff --git a/examples/git/clone.pp b/examples/git/clone.pp index b7d5bfb..b29a4fd 100644 --- a/examples/git/clone.pp +++ b/examples/git/clone.pp @@ -1,5 +1,5 @@  vcsrepo { '/tmp/vcstest-git-clone':    ensure   => present,    provider => git, -  source   => 'git://github.com/bruce/rtex.git' +  source   => 'git://github.com/bruce/rtex.git',  } diff --git a/examples/git/working_copy_init.pp b/examples/git/working_copy_init.pp index b20af20..e3352eb 100644 --- a/examples/git/working_copy_init.pp +++ b/examples/git/working_copy_init.pp @@ -1,4 +1,4 @@  vcsrepo { '/tmp/vcstest-git-wc':    ensure   => present, -  provider => git +  provider => git,  } | 
