Skip to content

Commit

Permalink
Fixup syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff McCune <jeff@puppetlabs.com>
  • Loading branch information
Jeff McCune committed Aug 5, 2010
1 parent 00e4baf commit 4318b0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/pb_init_50_puppet
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
set -e
set -u

if test -d "${PREFIX}/puppet"
if test -d "${PREFIX}/puppet"; then
echo "${PREFIX}/puppet already exists. Aborting"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion bin/pb_init_51_facter
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
set -e
set -u

if test -d "${PREFIX}/facter"
if test -d "${PREFIX}/facter"; then
echo "${PREFIX}/facter already exists. Aborting"
exit 1
fi
Expand Down

0 comments on commit 4318b0e

Please sign in to comment.