fix: throw away unknown version

See toolshed/abra#715
This commit is contained in:
2025-11-04 14:48:46 +01:00
committed by decentral1se
parent 1bdc11ba62
commit c3a2048eba
2 changed files with 18 additions and 0 deletions

View File

@ -633,6 +633,11 @@ func (a App) WipeRecipeVersion() error {
// WriteRecipeVersion writes the recipe version to the app .env file.
func (a App) WriteRecipeVersion(version string, dryRun bool) error {
if version == config.UNKNOWN_DEFAULT {
log.Debug(i18n.G("version is unknown, skipping env write"))
return nil
}
file, err := os.Open(a.Path)
if err != nil {
return err