Skip to content

Commit

Permalink
(lint) Fix lint error; double-quoted static string
Browse files Browse the repository at this point in the history
  • Loading branch information
reidmv committed Sep 28, 2019
1 parent e3cc522 commit 8ebef13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .sync.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
Rakefile:
extras:
- 'PuppetSyntax.exclude_paths = ["plans/**/*.pp"]'
- 'PuppetSyntax.exclude_paths = ["plans/**/*.pp", "vendor/**/*"]'
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ EOM
end
end

PuppetSyntax.exclude_paths = ["plans/**/*.pp"]
PuppetSyntax.exclude_paths = ["plans/**/*.pp", "vendor/**/*"]
2 changes: 1 addition & 1 deletion plans/configure.pp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# Ensure primary external database host for HA
if $ha {
if ! $puppetdb_database_host {
fail("Must specify puppetdb_database_host for HA environment")
fail('Must specify puppetdb_database_host for HA environment')
}
}

Expand Down
2 changes: 1 addition & 1 deletion plans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# Ensure primary external database host for HA
if $ha {
if ! $puppetdb_database_host {
fail("Must specify puppetdb_database_host for HA environment")
fail('Must specify puppetdb_database_host for HA environment')
}
}

Expand Down

0 comments on commit 8ebef13

Please sign in to comment.