-
Notifications
You must be signed in to change notification settings - Fork 17
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
Github Download Support #12
base: master
Are you sure you want to change the base?
Conversation
s3fs_version = node[:s3fs_fuse][:version] | ||
source_url = "http://s3fs.googlecode.com/files/s3fs-#{s3fs_version}.tar.gz" | ||
s3fs_git_tag = node[:s3fs_fuse][:version] | ||
s3fs_version = node[:s3fs_fuse][:version].tr('^0-9.','') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide a little more background why this change was needed?
This could be much simplified if we just decide to deprecate support for s3fs-fuse older than 1.74. Since that version was released on Github |
I wanted to get the latest version of s3fs-fuse and found that the install recipe was pointed to googlecode.com while they have moved their current repository to github. So I've made two changes.
-ngtjah