aboutsummaryrefslogtreecommitdiff
path: root/installpkg.go
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2022-05-05 08:48:38 -0500
committerSlack Coder <slackcoder@server.ky>2022-05-05 08:48:38 -0500
commit3026d40715e2758bc9ddfbd98acb558cfcba3c5d (patch)
tree110948975c44a3d62e195ed9b4fdad09e94a53d8 /installpkg.go
parent54b4b1d11ac5e893715d2ed509ee251dfc46a598 (diff)
downloadpkgtools-go-0.0.6.tar.xz
installpkg: fix unpacking of /install dirv0.0.6
Add missing return statement so the package 'install' directory is not installed on the target filesystem.
Diffstat (limited to 'installpkg.go')
-rw-r--r--installpkg.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/installpkg.go b/installpkg.go
index a0749bd..479b318 100644
--- a/installpkg.go
+++ b/installpkg.go
@@ -312,6 +312,7 @@ func extractSlackwarePkg(flags *InstallPkgFlags, fp string) error {
if ok, err := IsParentDir(PackageInstallPath, h.Name); ok {
// important install files are already written
// to the targets package database.
+ return nil
} else if err != nil {
return errors.Wrap(err, "installing package")
}