Merge pull request 'refs #1918 fix getConfiguration.py' (#31) from fix-getConfiguration into main
ogclone-engine/pipeline/tag This commit looks good
Details
ogclone-engine/pipeline/tag This commit looks good
Details
Reviewed-on: #31pull/32/head 0.7.1
commit
d79c677f16
|
@ -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.7.1] - 2025-04-15
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- getConfiguration.py: don't fail if NTFS filesystems are mounted ro
|
||||||
|
|
||||||
## [0.7.0] - 2025-04-15
|
## [0.7.0] - 2025-04-15
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
|
@ -74,4 +74,5 @@ else:
|
||||||
|
|
||||||
# Borramos marcas de arranque de Windows
|
# Borramos marcas de arranque de Windows
|
||||||
for f in glob.glob ('/mnt/*/ogboot.*') + glob.glob ('/mnt/*/*/ogboot.*'):
|
for f in glob.glob ('/mnt/*/ogboot.*') + glob.glob ('/mnt/*/*/ogboot.*'):
|
||||||
os.unlink (f)
|
try: os.unlink (f)
|
||||||
|
except: pass
|
||||||
|
|
Loading…
Reference in New Issue