summaryrefslogtreecommitdiff
path: root/spec/acceptance/files/create_git_repo.sh
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2014-05-27 16:02:58 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2014-05-27 16:02:58 -0400
commitbc29a94ad26070c0b1d0e1dd6f6fca7eaf0120f9 (patch)
tree8da22df25e149a27aa06b00709eab97a2a3286f6 /spec/acceptance/files/create_git_repo.sh
parentd98e0083f33f76e1ad13b650df81bdb18e4b59fe (diff)
parent521d321181c95eb042c23c8277e79cfe1d066117 (diff)
downloadpuppet-vcsrepo-bc29a94ad26070c0b1d0e1dd6f6fca7eaf0120f9.tar.gz
puppet-vcsrepo-bc29a94ad26070c0b1d0e1dd6f6fca7eaf0120f9.tar.bz2
Merge pull request #151 from hunner/fix_trusty
Update tests for ubuntu 14.04
Diffstat (limited to 'spec/acceptance/files/create_git_repo.sh')
-rwxr-xr-xspec/acceptance/files/create_git_repo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/acceptance/files/create_git_repo.sh b/spec/acceptance/files/create_git_repo.sh
index 40f341a..b5e930c 100755
--- a/spec/acceptance/files/create_git_repo.sh
+++ b/spec/acceptance/files/create_git_repo.sh
@@ -6,12 +6,12 @@ touch file1.txt file2.txt file3.txt
git init
echo 'change 1' > file1.txt
git add file1.txt
-git tag 0.0.1
git commit -m 'add file1'
+git tag 0.0.1
echo 'change 2' > file2.txt
git add file2.txt
-git tag 0.0.2
git commit -m 'add file2'
+git tag 0.0.2
echo 'change 3' > file3.txt
git add file3.txt
git commit -m 'add file3'