diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-11-13 07:29:46 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-11-13 07:29:46 +0900 |
| commit | be0e387ab07c7d9f1441365a05c4c0141779184a (patch) | |
| tree | 93ec7478d8d0faa320dfc86ad01cf39a364330c8 /cmd/hpkg | |
| parent | abeb67964f52f245f7d529e4dfe01f8347932bfd (diff) | |
internal/info: relocate from internal
This is cleaner and makes more sense. The longer LDFLAGS was never a valid concern since it is always inserted by a script.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/hpkg')
| -rw-r--r-- | cmd/hpkg/proc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/hpkg/proc.go b/cmd/hpkg/proc.go index 013e0b69..aca2db42 100644 --- a/cmd/hpkg/proc.go +++ b/cmd/hpkg/proc.go @@ -10,11 +10,11 @@ import ( "os/exec" "hakurei.app/hst" - "hakurei.app/internal" + "hakurei.app/internal/info" "hakurei.app/message" ) -var hakureiPathVal = internal.MustHakureiPath().String() +var hakureiPathVal = info.MustHakureiPath().String() func mustRunApp(ctx context.Context, msg message.Msg, config *hst.Config, beforeFail func()) { var ( |
