-
Notifications
You must be signed in to change notification settings - Fork 77
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
TypeError: can't convert String into Array when GEM_PATH is set #47
Comments
try to unset GEM_PATH. see: Jasig/sass-maven-plugin#47
So if you run into this problem on TravisCI do something like: language: java
before_install:
- unset GEM_PATH
before_script:
- mvn -e -Popenlayers
script: mvn -e -Pjenkins verify
jdk:
- openjdk7 eg. https://github.com/MinELenI/CBSviewer/blob/bb308896f823ab6ad9002ad7e8e06ff3f9fd18e1/.travis.yml |
FYI, I've got a fix for this in pull request #53 |
Until the pull request gets merged in, does anyone have a workaround for Heroku? I'm having trouble figuring out how to get it to unset the GEM_PATH env. |
The Heroku folks were super helpful, and sent me on a path of building a custom build pack. So here's one people can use: |
Fix for issue #47, ENV["GEM_PATH"] is not an array when set.
When do you plan to make a release for 1.1.2 ? |
+1. We'd also like to see a release since we currently are making do with |
+1 When do you plan to make a release for 1.1.2 ? |
+1 When do you plan to make a release for 1.1.2? |
2 similar comments
+1 When do you plan to make a release for 1.1.2? |
+1 When do you plan to make a release for 1.1.2? |
+1. Looking forward to 1.1.2 as I am running into this issue. |
use this plugin and you'll be fine: <plugin>
<groupId>nl.geodienstencentrum.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<version>2.5</version>
</plugin> see http://www.geodienstencentrum.nl/sass-maven-plugin/update-stylesheets-mojo.html |
This version is no longer maintained. Refer to more recent forks at https://github.com/Jasig/sass-maven-plugin/network for more up to date versions. |
Here is the beginning of that script:
Workaround:
unset GEM_PATH
before running mvnThe text was updated successfully, but these errors were encountered: