2
0

Merge pull request #65 from PlayFab/master

Test if individual gitfs remote is string
This commit is contained in:
Forrest 2014-11-13 11:35:13 -08:00
commit 64a63eda93
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ salt:
- git
- roots
gitfs_remotes:
- git://github.com/saltstack-formulas/salt-formula.git
- git://github.com/saltstack-formulas/salt-formula.git:
- base: develop
file_roots:
base:

View File

@ -486,7 +486,7 @@ fileserver_backend:
{% if 'gitfs_remotes' in master -%}
gitfs_remotes:
{%- for remote in master['gitfs_remotes'] %}
{% if remote is iterable %}
{% if remote is iterable and remote is not string %}
{%- for repo, children in remote.iteritems() -%}
- {{ repo }}:
{%- for child in children %}