pangeo-data/pangeo-stacks

cache_from string substitution

eddienko opened this issue · 0 comments

In the file build.py

    if cache_from:
        cmd +=' --cache-from {cache_from}'

should be

    if cache_from:
        cmd += f' --cache-from {cache_from}'