summaryrefslogtreecommitdiff
path: root/spec/support/builders.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-03 16:18:09 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-03 16:18:09 +0100
commit31a5e080c9424a9b024c8f5cb89e3dbb29a71a55 (patch)
tree4df45758e1a1c390bcce4d6758e45fbd1dbf91af /spec/support/builders.rb
parenteeb5722f24e8868cbbf3687cc772254ac65d19df (diff)
downloadbundler-31a5e080c9424a9b024c8f5cb89e3dbb29a71a55.tar.gz
Use double quotes for `git commit -m`windows_friendly_git
Apparently single quotes don't work on Windows, and this also makes our code more consistent.
Diffstat (limited to 'spec/support/builders.rb')
-rw-r--r--spec/support/builders.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/builders.rb b/spec/support/builders.rb
index 442623a415..33a81f6f65 100644
--- a/spec/support/builders.rb
+++ b/spec/support/builders.rb
@@ -649,7 +649,7 @@ module Spec
`git config user.email "lol@wut.com"`
`git config user.name "lolwut"`
`git config commit.gpgsign false`
- `git commit -m 'OMG INITIAL COMMIT'`
+ `git commit -m "OMG INITIAL COMMIT"`
end
end
end