From bc875b83a4642897ce5b13bb5f8914714b0000b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sat, 13 Jul 2024 12:05:40 +0200 Subject: [PATCH] Add Bun --- apps/snapshots.go | 1 - types.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/snapshots.go b/apps/snapshots.go index 1043fc7..510dfb9 100644 --- a/apps/snapshots.go +++ b/apps/snapshots.go @@ -138,7 +138,6 @@ func (s *SnapshotProcessor) CreateSnapshot(appName string, labels []string) (str return snapshot.KeyName(s.IndexLabel), fmt.Errorf("change working directory error: %v", err) } - log.Println("DEBUG tar call:", tarBin, "-acf", tmpSnapshotArchivePath, "./") err = exec.Command(tarBin, "-acf", tmpSnapshotArchivePath, "./").Run() if err != nil { return snapshot.KeyName(s.IndexLabel), fmt.Errorf("compression error: %v", err) diff --git a/types.go b/types.go index aabfd26..9a7d22b 100644 --- a/types.go +++ b/types.go @@ -56,6 +56,7 @@ type QuickServices struct { PHP bool `json:"php"` Ruby bool `json:"ruby"` Deno bool `json:"deno"` + Bun bool `json:"bun"` Memcached bool `json:"memcached"` Redis bool `json:"redis"` }