From e44331dda150f2ec766d4ae331b4dbadad90ccca Mon Sep 17 00:00:00 2001 From: Dimitri Stiliadis Date: Wed, 22 Jun 2022 20:21:42 -0700 Subject: [PATCH] try parameter --- hugo/internal/hugo_site.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo/internal/hugo_site.bzl b/hugo/internal/hugo_site.bzl index 33a82a8..c836657 100644 --- a/hugo/internal/hugo_site.bzl +++ b/hugo/internal/hugo_site.bzl @@ -85,7 +85,7 @@ def _hugo_site_impl(ctx): ctx.actions.run_shell( inputs = [i], outputs = [o], - command = 'cp -r "$1" "$2"', + command = 'cp -r -L "$1" "$2"', arguments = [i.path, o.path], ) hugo_inputs.append(o)