aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-10 16:30:12 +0900
committerOphestra <cat@gensokyo.uk>2026-05-10 16:30:12 +0900
commit7f2126df32c2d68526fcd31a558b2ef85f4109f2 (patch)
treebb7dfc86678fd53258ef34aa0e52d1c19d246de0 /internal
parent0cf0e18e35d7b5b53b3bf4b1326dc276f14a96b0 (diff)
internal/rosa/hakurei: 0.4.1 to 0.4.2
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
-rw-r--r--internal/rosa/hakurei.go6
-rw-r--r--internal/rosa/hakurei_release.go4
2 files changed, 7 insertions, 3 deletions
diff --git a/internal/rosa/hakurei.go b/internal/rosa/hakurei.go
index 591ece45..276547a8 100644
--- a/internal/rosa/hakurei.go
+++ b/internal/rosa/hakurei.go
@@ -96,9 +96,13 @@ mkdir -p /work/system/bin/
}
artifactsM[HakureiDist] = Metadata{
f: func(t Toolchain) (pkg.Artifact, string) {
+ name := "all"
+ if presetOpts&OptSkipCheck != 0 {
+ name = "make"
+ }
return t.newHakurei("-dist", `
export HAKUREI_VERSION
-DESTDIR=/work /usr/src/hakurei/all.sh
+DESTDIR=/work /usr/src/hakurei/`+name+`.sh
`, true), hakureiVersion
},
diff --git a/internal/rosa/hakurei_release.go b/internal/rosa/hakurei_release.go
index 43fb68db..bdf710ed 100644
--- a/internal/rosa/hakurei_release.go
+++ b/internal/rosa/hakurei_release.go
@@ -4,13 +4,13 @@ package rosa
import "hakurei.app/internal/pkg"
-const hakureiVersion = "0.4.1"
+const hakureiVersion = "0.4.2"
// hakureiSource is the source code of a hakurei release.
var hakureiSource = newTar(
"https://git.gensokyo.uk/rosa/hakurei/archive/"+
"v"+hakureiVersion+".tar.gz",
- "8bHvZcjUQOXUPbKL-qq99pHFTPnn-h7j1fkJudbGs8waLm3OmkI6eHfQev5bug2y",
+ "jadgaOrxv5ABGvzQ_Rk0aPGz7U8K-427TbMhQNQ32scSizEnlR44Pu7NoWYWVZWq",
pkg.TarGzip,
)