implemented upgrade, and fixed some bugs

This commit is contained in:
2025-10-05 15:47:21 -03:00
parent afc19b6e4d
commit 147fca375e
3 changed files with 187 additions and 185 deletions

View File

@@ -6,4 +6,6 @@ var (
ErrResponseNot200OK = errors.New("the request is not 200, download failed")
ErrCantFindManifestTOML = errors.New("can't find manifest.toml when trying to read the packagefile")
ErrInvalidSignature = errors.New("the signature is invalid")
ErrNotInstalled = errors.New("the package isn't installed")
ErrAlredyUpToDate = errors.New("alredy up to date")
)