Skip to content

Instantly share code, notes, and snippets.

@ukisoft
Last active September 1, 2016 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ukisoft/f38d95b90de3831611082d6bb1cb5edc to your computer and use it in GitHub Desktop.
Save ukisoft/f38d95b90de3831611082d6bb1cb5edc to your computer and use it in GitHub Desktop.
embulk の liquid template でハマったトコ ref: http://qiita.com/ukisoft/items/f628de4feb9335f99a68
{% include 'child', args = env.ARGS %}
{% assign args = env.ARGS %}
{% include 'child', args = args %}
# parent.yml.liquid
{% include 'child', args = 'ar' %}
# _child.yml.liquid
{% assing args = args | append: 'gs' %}
{% include 'grandchild1', args: args %} # 'ar' が渡される
{% include 'grandchild2', args = args %} # 'args' が渡される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment