1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

fix order of command

This commit is contained in:
Jason N. 2024-03-13 12:18:28 -04:00
parent 68b5392f8a
commit 13876998bf

View file

@ -1,11 +1,11 @@
577,578c577,579
< args = ["install", "to-filesystem", "--source-imgref=" + ref,
< self._physroot]
577,579c577,578
< args = ["container", "image", "deploy",
< "--sysroot=" + self._physroot,
< "--image=" + ref]
---
> args = ["container", "image", "deploy",
> "--sysroot=" + self._physroot,
> "--image=" + ref]
588c589
< "bootc",
> args = ["install", "to-filesystem", "--source-imgref=" + ref,
> self._physroot]
589c588
< "ostree",
---
> "ostree",
> "bootc",