allow variable comptype

This commit is contained in:
sawka
2022-11-09 20:38:47 -08:00
parent d86bee87d8
commit 01821ca094
+1 -1
View File
@@ -364,7 +364,7 @@ type CompGenPacketType struct {
}
func IsValidCompGenType(t string) bool {
return (t == "file" || t == "command" || t == "directory")
return (t == "file" || t == "command" || t == "directory" || t == "variable")
}
func (*CompGenPacketType) GetType() string {