internal/rosa/squashfs: enter correct directory
Some checks failed
Test / Create distribution (push) Failing after 54s
Test / ShareFS (push) Failing after 1m22s
Test / Flake checks (push) Has been cancelled
Test / Sandbox (race detector) (push) Has been cancelled
Test / Hakurei (race detector) (push) Has been cancelled
Test / Sandbox (push) Has been cancelled
Test / Hakurei (push) Has been cancelled

This was missed when migrating to the make helper.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-03-05 00:35:51 +09:00
parent 3c82b0dbf5
commit 10b6d9aebd

View File

@@ -14,9 +14,8 @@ func (t Toolchain) newSquashfsTools() (pkg.Artifact, string) {
pkg.TarGzip, pkg.TarGzip,
), &PackageAttr{ ), &PackageAttr{
// uses source tree as scratch space // uses source tree as scratch space
Writable: true, Writable: true,
Chmod: true, Chmod: true,
EnterSource: true,
Env: []string{ Env: []string{
"CONFIG=1", "CONFIG=1",
@@ -26,8 +25,8 @@ func (t Toolchain) newSquashfsTools() (pkg.Artifact, string) {
"COMP_DEFAULT=zstd", "COMP_DEFAULT=zstd",
"USE_PREBUILT_MANPAGES=y", "USE_PREBUILT_MANPAGES=y",
}, },
ScriptEarly: "cd squashfs-tools",
}, &MakeHelper{ }, &MakeHelper{
SkipConfigure: true, SkipConfigure: true,
InPlace: true, InPlace: true,