From 737a22aaccee921e942436fc8a5f7870398e9870 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Wed, 22 Dec 2021 01:02:43 +0100 Subject: [PATCH] refactor: less quotes --- cli/internal/copy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/internal/copy.go b/cli/internal/copy.go index 95f9ecaf..71899761 100644 --- a/cli/internal/copy.go +++ b/cli/internal/copy.go @@ -39,11 +39,11 @@ func ConfigureAndCp(c *cli.Context, app config.App, srcPath string, dstPath stri logrus.Fatal(err) } - logrus.Debugf("retrieved '%s' as target container on '%s'", formatter.ShortenID(container.ID), app.Server) + logrus.Debugf("retrieved %s as target container on %s", formatter.ShortenID(container.ID), app.Server) if isToContainer { if _, err := os.Stat(srcPath); err != nil { - logrus.Fatalf("'%s' does not exist?", srcPath) + logrus.Fatalf("%s does not exist?", srcPath) } toTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip}