Skip to content
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

Update to use node v0.6.0 and npm v1.0.105. #11

Merged
merged 3 commits into from Nov 29, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions nodejs/attributes/default.rb
Expand Up @@ -17,6 +17,6 @@
# limitations under the License.
#

default.nodejs[:version] = "0.4.8"
default.nodejs[:version] = "0.6.0"
default.nodejs[:dir] = "/usr/local"
default.nodejs[:npm] = "1.0.10"
default.nodejs[:npm] = "1.0.105"
2 changes: 1 addition & 1 deletion nodejs/recipes/default.rb
Expand Up @@ -31,7 +31,7 @@
cwd "/usr/local/src"
user "root"
code <<-EOH
wget http://nodejs.org/dist/node-v#{node[:nodejs][:version]}.tar.gz && \
wget http://nodejs.org/dist/v#{node[:nodejs][:version]}/node-v#{node[:nodejs][:version]}.tar.gz && \
tar zxf node-v#{node[:nodejs][:version]}.tar.gz && \
cd node-v#{node[:nodejs][:version]} && \
./configure --prefix=#{node[:nodejs][:dir]} && \
Expand Down