Skip to content

Commit

Permalink
more bare variables
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Jul 28, 2016
1 parent a525e47 commit 1129881
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,6 @@
- Fix bare variable issue
- Fix custom scripts

## v1.7.3

- Fix more bare variable issues
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
dest: "{{ hubot_dir }}/scripts/{{ item }}"
owner: "{{ hubot_admin }}"
mode: "0644"
with_items: hubot_custom_scripts
with_items: "{{ hubot_custom_scripts }}"
when: hubot_custom_scripts is defined
notify:
- restart hubot
Expand All @@ -103,7 +103,7 @@
- name: Install hubot external git scripts
become: False
git: "repo={{ item.repo_url }} version={{ item.version | default('master') }} dest={{ hubot_dir }}/node_modules/{{ item.name }}"
with_items: hubot_external_git_scripts
with_items: "{{ hubot_external_git_scripts }}"
when: hubot_external_git_scripts is defined
notify:
- restart hubot
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.7.2
v1.7.3

0 comments on commit 1129881

Please sign in to comment.