removed unused flag for import

This commit is contained in:
Christian Goll
2023-02-13 12:27:47 +01:00
parent 5ed711490d
commit 77352fe36f

View File

@@ -22,12 +22,10 @@ var (
return list, cobra.ShellCompDirectiveNoFileComp
},
}
PermMode int32
NoOverlayUpdate bool
)
func init() {
baseCmd.PersistentFlags().Int32VarP(&PermMode, "mode", "m", 0755, "Permission mode for directory")
baseCmd.PersistentFlags().BoolVarP(&NoOverlayUpdate, "noupdate", "n", false, "Don't update overlays")
}