diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 00:38:50 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 00:38:50 +0300 |
commit | bf817c6ea3036d8fd69995a767f5071e19232fb9 (patch) | |
tree | 987f586d487d87863920cf9fcc7525f3587d065c /modules/git/files | |
parent | 6a9988b82160f4f516ceb36b48acdd8f49458659 (diff) | |
download | puppet-bf817c6ea3036d8fd69995a767f5071e19232fb9.tar puppet-bf817c6ea3036d8fd69995a767f5071e19232fb9.tar.gz puppet-bf817c6ea3036d8fd69995a767f5071e19232fb9.tar.bz2 puppet-bf817c6ea3036d8fd69995a767f5071e19232fb9.tar.xz puppet-bf817c6ea3036d8fd69995a767f5071e19232fb9.zip |
lint fixes for git
Diffstat (limited to 'modules/git/files')
-rw-r--r-- | modules/git/files/apply_git_puppet_config.sh | 2 | ||||
-rw-r--r-- | modules/git/files/create_git_repo.sh | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/modules/git/files/apply_git_puppet_config.sh b/modules/git/files/apply_git_puppet_config.sh index 29ede998..1ed6fbf1 100644 --- a/modules/git/files/apply_git_puppet_config.sh +++ b/modules/git/files/apply_git_puppet_config.sh @@ -4,4 +4,4 @@ while read line do # --local is a option for the newer git git config --add $line -done < config.puppet +done < config.puppet diff --git a/modules/git/files/create_git_repo.sh b/modules/git/files/create_git_repo.sh index 1104edbe..28afde40 100644 --- a/modules/git/files/create_git_repo.sh +++ b/modules/git/files/create_git_repo.sh @@ -8,4 +8,3 @@ git --bare init --shared=group chmod g+ws branches info objects refs ( cd objects; chmod g+ws * ) git config receive.denyNonFastForwards true - |