remake icon indicating copy to clipboard operation
remake copied to clipboard

Allow diamond-style includes

Open krlmlr opened this issue 7 years ago • 1 comments

Multiple includes of the same .yml currently gives All target names must be unique, this seems unnecessary. Example:

# base.yml
targets:
  test:
    command: quote(TRUE)

# a.yml
include:
  - base.yml

# b.yml
include:
  - base.yml

# remake.yml
include:
  - a.yml
  - b.yml

krlmlr avatar Oct 09 '16 22:10 krlmlr

We should also consider making recursive includes a no-op (with some output).

krlmlr avatar Oct 13 '16 09:10 krlmlr