Skip to content

Commit

Permalink
Typo for source_url variable fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
jschaul committed Feb 7, 2015
1 parent c0b0a11 commit 9363d32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion tasks/binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
dest: "/tmp/node-v{{nodejs_version}}.tar.gz"

- name: node.js | binary | Unpack the node.js package
unarchive: src="/tmp/node-v{{nodejs_version}}.tar.gz" dest="/usr/local/nodejs" copy=no
unarchive:
src : "/tmp/node-v{{nodejs_version}}.tar.gz"
dest : "/usr/local/nodejs"
copy : no

- name: node.js | binary | Update the symbolic link to the node.js install
file:
Expand Down
2 changes: 1 addition & 1 deletion tasks/source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- name: node.js | source | Download the node.js source
get_url:
url: "{{nodejs_url}}"
url: "{{nodejs_source_url}}"
dest: "/tmp/node-v{{nodejs_version}}.tar.gz"

- name: node.js | source | Unpack the node.js source
Expand Down

0 comments on commit 9363d32

Please sign in to comment.