refactor: let Metadata::create_env_patched_bin handle compiler

defaults

In the previous commit, I had moved `LuaCompiler` construction into the
CLI command, which was not necessary. This reverts that.
This commit is contained in:
Erica Marigold 2024-04-20 11:38:33 +05:30
parent 0070f132b0
commit d889031cc1
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1
2 changed files with 8 additions and 12 deletions

View file

@ -10,7 +10,6 @@ use async_zip::base::read::seek::ZipFileReader;
use clap::Parser;
use console::style;
use directories::BaseDirs;
use mlua::Compiler;
use once_cell::sync::Lazy;
use thiserror::Error;
use tokio::{
@ -69,16 +68,9 @@ impl BuildCommand {
style("Compile").green().bold(),
style(input_path_displayed).underlined()
);
let patched_bin = Metadata::create_env_patched_bin(
base_exe_path,
source_code.clone(),
Compiler::new()
.set_optimization_level(2)
.set_coverage_level(0)
.set_debug_level(1),
)
.await
.context("failed to create patched binary")?;
let patched_bin = Metadata::create_env_patched_bin(base_exe_path, source_code.clone())
.await
.context("failed to create patched binary")?;
// And finally write the patched binary to the output file
println!(

View file

@ -51,8 +51,12 @@ impl Metadata {
pub async fn create_env_patched_bin(
base_exe_path: PathBuf,
script_contents: impl Into<Vec<u8>>,
compiler: LuaCompiler,
) -> Result<Vec<u8>> {
let compiler = LuaCompiler::new()
.set_optimization_level(2)
.set_coverage_level(0)
.set_debug_level(1);
let mut patched_bin = fs::read(base_exe_path).await?;
// Compile luau input into bytecode