Files
SilverMetal/linux/build/scripts
SysAdmin 5e5026088d
Some checks failed
Build SilverMetal Linux ISO (reproducibility-gated) / builder-image (push) Successful in 1s
Build SilverMetal Linux ISO (reproducibility-gated) / build-and-verify (push) Failing after 37m14s
fix(linux/build): terminate xorriso -alter_date_r path list with -- (M1.1 iter32)
Run #4279 hit:

    xorriso : FAILURE : Cannot find path '/-volume_date' in loaded ISO image
    xorriso : aborting : -abort_on 'FAILURE' encountered 'FAILURE'

`-alter_date_r type timestring iso_rr_path [***]` takes a
variable-length path list. xorriso terminates that list either at the
end of the command line or at a literal `--`. Without the terminator,
the next intended option (`-volume_date`) is consumed as another path
to set mtime on, blows up because there's no node called
`/-volume_date`, and FAILURE-severity propagates to a hard exit.

Add `--` after the `/` argument to close the path list. -volume_date c/m
then take effect as expected.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 23:10:02 +01:00
..