From d23307b403265fe90d8a6b3aee800bc02c9b71be Mon Sep 17 00:00:00 2001 From: DingRui Yang Date: Thu, 2 Mar 2023 20:40:49 +0800 Subject: [PATCH] Fix file rename: hack/download-restic.sh -> hack/build-restic.sh In https://github.com/vmware-tanzu/velero/commits/fc0c4703950452f035788b0831ca2c2fd4968a59 rename the file. But not sync the update in tiltfile Signed-off-by: DingRui Yang --- Tiltfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tiltfile b/Tiltfile index 3ce9aedf7..8e94aa722 100644 --- a/Tiltfile +++ b/Tiltfile @@ -103,7 +103,7 @@ local_resource( local_resource( "restic_binary", - cmd = 'cd ' + '.' + ';mkdir -p _tiltbuild/restic; BIN=velero GOOS=linux GOARCH=amd64 RESTIC_VERSION=0.13.1 OUTPUT_DIR=_tiltbuild/restic ./hack/download-restic.sh', + cmd = 'cd ' + '.' + ';mkdir -p _tiltbuild/restic; BIN=velero GOOS=linux GOARCH=amd64 RESTIC_VERSION=0.13.1 OUTPUT_DIR=_tiltbuild/restic ./hack/build-restic.sh', ) # Note: we need a distro with a bash shell to exec into the Velero container