From 71593da4ffb00b02cb91a726230cf9d5aab6dd9b Mon Sep 17 00:00:00 2001 From: Konrad Niemiec Date: Wed, 1 May 2024 16:42:07 -0700 Subject: [PATCH] fix panic --- pkg/sync/ts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sync/ts.go b/pkg/sync/ts.go index 7744b51b..71df6fbb 100644 --- a/pkg/sync/ts.go +++ b/pkg/sync/ts.go @@ -23,7 +23,7 @@ import ( ) func BisyncTS(lekkoPath, repoPath string) error { - tsSyncCmd := exec.Command("npx", "lekko-repo-sync", "--lekko-dir", lekkoPath, "--repo-path", repoPath) + tsSyncCmd := exec.Command("npx", "lekko-repo-sync", "--lekko-dir", lekkoPath) output, err := tsSyncCmd.CombinedOutput() outputStr := strings.TrimSpace(string(output)) if len(outputStr) > 0 {