-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vagrant requires also to scape slashes #253
Conversation
Better fix is probably to use |
I caught this last issue when I was testing the gem for the Release!! Now I am sure this works all the way:
|
Specifically here kitchen-vagrant/templates/Vagrantfile.erb Line 75 in ae31b86
Rather than |
You can also use |
@coderanger I like that man! Let me try it!! 👍 |
bff2725
to
ce8b496
Compare
We need to use `.inspect` so that the back slashes get scaped in the `Vagrantfile` Signed-off-by: Salim Afiune <[email protected]>
ce8b496
to
c99d6f1
Compare
good call @coderanger !! |
cc/ @test-kitchen/maintainers |
Signed-off-by: Salim Afiune <[email protected]>
b912b3d
to
43eaa87
Compare
We need to scape the back slashes in Ruby but also Vagrant requires to
scape them. So we need to double scape!
Signed-off-by: Salim Afiune [email protected]