mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix: revert accidentally lowercased version global
This commit is contained in:
parent
d07168d60b
commit
ac8d3a944d
1 changed files with 2 additions and 3 deletions
|
@ -1,13 +1,12 @@
|
|||
use mlua::prelude::*;
|
||||
|
||||
pub fn create(lua: &Lua) -> LuaResult<impl IntoLua<'_>> {
|
||||
let lune_version = format!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
|
||||
|
||||
let lune_version = format!("Lune {}", env!("CARGO_PKG_VERSION"));
|
||||
|
||||
let luau_version_full = lua
|
||||
.globals()
|
||||
.get::<_, LuaString>("_VERSION")
|
||||
.expect("Missing _VERSION global");
|
||||
|
||||
let luau_version_str = luau_version_full
|
||||
.to_str()
|
||||
.context("Invalid utf8 found in _VERSION global")?;
|
||||
|
|
Loading…
Add table
Reference in a new issue