Browse Source

Update Tiltfile

Add GOARCH=amd64 back to tiltfile

Signed-off-by: Bill Hamilton <bill.hamilton@pacificcode.com>
Signed-off-by: Bill Hamilton <bill.hamilton@delinea.com>
Bill Hamilton 2 years ago
parent
commit
823cf7ddc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tiltfile

+ 1 - 1
Tiltfile

@@ -51,7 +51,7 @@ if settings.get('debug').get('enabled'):
 
 local_resource(
     'external-secret-binary',
-    "CGO_ENABLED=0 GOOS=linux go build -gcflags '{gcflags}' -v -o bin/external-secrets ./".format(gcflags=gcflags),
+    "CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -gcflags '{gcflags}' -v -o bin/external-secrets ./".format(gcflags=gcflags),
     deps = [
         "main.go",
         "go.mod",