2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-01 00:32:03 +00:00

chore: change back release to moonflower

This commit is contained in:
sammyette 2025-06-16 17:16:45 -04:00
parent 548de98551
commit eb630b2de0
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

15
vars.go
View File

@ -2,17 +2,17 @@ package main
// String vars that are free to be changed at compile time
var (
defaultHistDir = ""
defaultHistDir = ""
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
prompt string
prompt string
multilinePrompt = "> "
)
// Version info
var (
ver = "v3.0.0"
releaseName = "Hyacinth"
ver = "v3.0.0"
releaseName = "Moonflower"
gitCommit string
gitBranch string
@ -20,10 +20,9 @@ var (
// Flags
var (
running bool // Is a command currently running
running bool // Is a command currently running
interactive bool
login bool // Are we the login shell?
noexecute bool // Should we run Lua or only report syntax errors
login bool // Are we the login shell?
noexecute bool // Should we run Lua or only report syntax errors
initialized bool
)