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
Hi. Not sure if this is the correct place to post this, but I ran into this issue and thought others may benefit from hearing what I did to fix it.
Fresh install of Bash on Windows 14371.rs1_release.160617-1723. Install rbenv latest, ruby 2.3.1, and bundler latest. Any attempt to run bundle fails with the following error: "ArgumentError: parent directory is world writable but not sticky". Following advice in this comment, I was able to resolve the issue by running the command find ~/.bundle/cache -type d -exec chmod 0755 {} +
The text was updated successfully, but these errors were encountered:
Hi. Not sure if this is the correct place to post this, but I ran into this issue and thought others may benefit from hearing what I did to fix it.
Fresh install of Bash on Windows 14371.rs1_release.160617-1723. Install rbenv latest, ruby 2.3.1, and bundler latest. Any attempt to run
bundle
fails with the following error: "ArgumentError: parent directory is world writable but not sticky". Following advice in this comment, I was able to resolve the issue by running the commandfind ~/.bundle/cache -type d -exec chmod 0755 {} +
The text was updated successfully, but these errors were encountered: