From 608adebeb3a3ab61e3d0bd4ad5a5f335373cf58d Mon Sep 17 00:00:00 2001 From: Hyunseok Cho Date: Thu, 16 Jan 2020 20:56:54 +0900 Subject: [PATCH] Fix command not working in zsh --- rsts/administrator/install/production.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsts/administrator/install/production.rst b/rsts/administrator/install/production.rst index 390c8eaed8..088facfc23 100644 --- a/rsts/administrator/install/production.rst +++ b/rsts/administrator/install/production.rst @@ -67,7 +67,7 @@ Since the ``base`` files are not in your local copy, you'll need to make some sl find . -name kustomization.yaml -print0 | xargs -0 sed -i.bak 's~../../../base~github.com/lyft/flyte/kustomize/base~' find . -name kustomization.yaml -print0 | xargs -0 sed -i.bak 's~../../../dependencies~github.com/lyft/flyte/kustomize/dependencies~' - find . -name *.bak | xargs rm + find . -name '*.bak' | xargs rm You should now be able to run kustomize against the ``flyte`` directory ::