Add Bun
All checks were successful
Unittests / unittests (push) Successful in 14s
Unittests / deploy-dev (push) Successful in 47s

This commit is contained in:
Adam Štrauch 2024-07-13 12:05:40 +02:00
parent 27152bad72
commit bc875b83a4
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
2 changed files with 1 additions and 1 deletions

View File

@ -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) 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() err = exec.Command(tarBin, "-acf", tmpSnapshotArchivePath, "./").Run()
if err != nil { if err != nil {
return snapshot.KeyName(s.IndexLabel), fmt.Errorf("compression error: %v", err) return snapshot.KeyName(s.IndexLabel), fmt.Errorf("compression error: %v", err)

View File

@ -56,6 +56,7 @@ type QuickServices struct {
PHP bool `json:"php"` PHP bool `json:"php"`
Ruby bool `json:"ruby"` Ruby bool `json:"ruby"`
Deno bool `json:"deno"` Deno bool `json:"deno"`
Bun bool `json:"bun"`
Memcached bool `json:"memcached"` Memcached bool `json:"memcached"`
Redis bool `json:"redis"` Redis bool `json:"redis"`
} }