You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run into syntax parsing issues occasionally, even when the syntax should be valid bash. For example, a bash array with newlines:
ARRAY=(
'item1'#'commented item''item3''item4'
)
I don't actually need Vagrant to see this array, but I need the provisioning scripts to see it. But since it throws an error on vagrant up from the syntax, I can't get the box started to use it.
The error: Line "\item1'" doesn't match format (Dotenv::FormatError)
Perhaps bumping the version will help provided there aren't any major API changes.
I've not yet tried to build and install vagrant plugins for development myself, but it would be on my radar. I use this plugin regularly, it's great and thanks for making it.
The text was updated successfully, but these errors were encountered:
I run into syntax parsing issues occasionally, even when the syntax should be valid bash. For example, a bash array with newlines:
I don't actually need Vagrant to see this array, but I need the provisioning scripts to see it. But since it throws an error on
vagrant up
from the syntax, I can't get the box started to use it.The error:
Line "\item1'" doesn't match format (Dotenv::FormatError)
In this file: https://github.com/gosuri/vagrant-env/blob/master/vagrant-env.gemspec
There is this line:
spec.add_runtime_dependency "dotenv", "~> 0.9"
The Ruby dotenv library is at version 2.5: https://github.com/bkeepers/dotenv
Perhaps bumping the version will help provided there aren't any major API changes.
I've not yet tried to build and install vagrant plugins for development myself, but it would be on my radar. I use this plugin regularly, it's great and thanks for making it.
The text was updated successfully, but these errors were encountered: