fix: lint in process lib.rs

This commit is contained in:
Erica Marigold 2024-06-23 19:29:12 +05:30
parent c9cbaf6183
commit ad4b8a7c91
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -47,8 +47,8 @@ pub fn module(lua: &Lua) -> LuaResult<LuaTable> {
cwd_str.push(MAIN_SEPARATOR);
}
// Create constants for OS & processor architecture
let os = lua.create_string(&OS.to_lowercase())?;
let arch = lua.create_string(&ARCH.to_lowercase())?;
let os = lua.create_string(OS.to_lowercase())?;
let arch = lua.create_string(ARCH.to_lowercase())?;
// Create readonly args array
let args_vec = lua
.app_data_ref::<Vec<String>>()