getgort / gort

Gort is a chatbot framework designed from the ground up for chatops.

Home Page:https://guide.getgort.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"bundle uninstall" of any version disables enabled bundle of same type

clockworksoul opened this issue · comments

Uninstalling a bundle of one type (such as "test") disables all versions of that bundle.

$ go run . bundle list -v                        
BUNDLE   ENABLED   INSTALLED VERSIONS    
gort     0.0.1     0.0.1                 
test     0.0.2     0.0.1, 0.0.2, 0.0.3

$ go run . bundle uninstall test 0.0.3
Bundle test 0.0.3 uninstalled.

$go run . bundle list -v             
BUNDLE   ENABLED   INSTALLED VERSIONS   
gort     0.0.1     0.0.1                
test     -         0.0.1, 0.0.2 

$ go run . bundle info test
Name: test
Versions: 0.0.1, 0.0.2
Status: Disabled