Merge pull request '#2301 adds mount route when boot mark is created' (#67) from fix-bootMark-linux into main
Reviewed-on: #67ogexecandlog-createimage 0.20.1
commit
a5eacbe203
|
@ -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/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.20.1] - 2025-06-24
|
||||
|
||||
### Changed
|
||||
|
||||
- Fix mark for ogboot on linux
|
||||
|
||||
## [0.20.0] - 2025-06-24
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -81,7 +81,7 @@ if 'Windows' == ostype:
|
|||
|
||||
elif 'Linux' == ostype:
|
||||
# Marca para arranque.
|
||||
boot_mark_file = f'/Part-{int(disk):02d}-{int(par):02d}'
|
||||
boot_mark_file = f'{mntdir}/Part-{int(disk):02d}-{int(par):02d}'
|
||||
try:
|
||||
open (boot_mark_file, 'w').close()
|
||||
except Exception as e:
|
||||
|
|
Loading…
Reference in New Issue