aboutsummaryrefslogtreecommitdiffsponsor
path: root/cmd
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2022-05-05 08:14:42 -0500
committerSlack Coder <slackcoder@server.ky>2022-05-05 08:23:00 -0500
commit54b4b1d11ac5e893715d2ed509ee251dfc46a598 (patch)
tree29bc57494892e4ab9c15deb587d740f3ace26b21 /cmd
parentc74d8aa270583ab2d2a38d41439312af3ea0d810 (diff)
downloadpkgtools-go-54b4b1d11ac5e893715d2ed509ee251dfc46a598.tar.xz
installpkg: support no-overwrite option
Diffstat (limited to 'cmd')
-rw-r--r--cmd/installpkg/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/installpkg/main.go b/cmd/installpkg/main.go
index a1561e1..5cc4955 100644
--- a/cmd/installpkg/main.go
+++ b/cmd/installpkg/main.go
@@ -49,7 +49,7 @@ func ParseFlags() *pkgtools.InstallPkgFlags {
flags.SetEnvValues()
getopt.FlagLong(&flags.Root, "root", 0, "/mnt (install someplace else, like /mnt)")
- //getopt.FlagLong(&flags.NoOverwrite, "no-overwrite", 0, "When extracting the package, do not overwrite existing files. Usually, this option should not be used. It exists so that upgradepkg can use it for the second installation pass. The first pass has already overwritten the previous package's files, and this will catch the few corner cases without generating unnecessary writes.")
+ getopt.FlagLong(&flags.NoOverwrite, "no-overwrite", 0, "When extracting the package, do not overwrite existing files. Usually, this option should not be used. It exists so that upgradepkg can use it for the second installation pass. The first pass has already overwritten the previous package's files, and this will catch the few corner cases without generating unnecessary writes.")
getopt.Parse()
return &flags