refs #1879 negate rc to the shell
parent
c1f123b489
commit
2c18e6981f
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.4.1] - 2025-04-10
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- restoreImage.py: return negated rc to the shell
|
||||||
|
|
||||||
## [0.4.0] - 2025-04-10
|
## [0.4.0] - 2025-04-10
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -114,5 +114,5 @@ t = time.time() - t0
|
||||||
SystemLib.ogEcho (['log', 'session'], None, f'[100] Duracion de la operacion {int (t/60)}m {int (t%60)}s')
|
SystemLib.ogEcho (['log', 'session'], None, f'[100] Duracion de la operacion {int (t/60)}m {int (t%60)}s')
|
||||||
|
|
||||||
# Código de salida del comando prinicpal de restauración.
|
# Código de salida del comando prinicpal de restauración.
|
||||||
sys.exit (retval)
|
sys.exit (not retval) ## negated for the shell
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue