diff options
author | Slack Coder <slackcoder@server.ky> | 2022-04-13 15:23:57 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2022-04-13 15:23:57 -0500 |
commit | f79877dd20bbf5fa51c8c0df50101c2547b9e91d (patch) | |
tree | 6adfdd397cfe41be016f558cfe79ff851268b105 | |
parent | bb5a1e7b515391888b917b597b7595566b5a22de (diff) | |
download | pkgtools-go-f79877dd20bbf5fa51c8c0df50101c2547b9e91d.tar.xz |
installpkg: remove print statement
-rw-r--r-- | installpkg.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/installpkg.go b/installpkg.go index 438228b..7354ff0 100644 --- a/installpkg.go +++ b/installpkg.go @@ -296,7 +296,6 @@ func InstallPkg(flags *InstallPkgFlags, pkgs ...string) error { } installPath := path.Join(flags.Root, PackageInstallPath) - fmt.Println(installPath) if _, err := os.Stat(installPath); !errors.Is(err, os.ErrNotExist) { return errors.Errorf("The '%s' directory exists and would be used by installpkg and removed. Please consider renaming the directory or using Slackware's installpkg.", installPath) } |