aboutsummaryrefslogtreecommitdiffsponsor
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2022-04-13 15:23:57 -0500
committerSlack Coder <slackcoder@server.ky>2022-04-13 15:23:57 -0500
commitf79877dd20bbf5fa51c8c0df50101c2547b9e91d (patch)
tree6adfdd397cfe41be016f558cfe79ff851268b105
parentbb5a1e7b515391888b917b597b7595566b5a22de (diff)
downloadpkgtools-go-f79877dd20bbf5fa51c8c0df50101c2547b9e91d.tar.xz
installpkg: remove print statement
-rw-r--r--installpkg.go1
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)
}