mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-07-28 19:58:47 +00:00
fix: remove unnecessary mut
This commit is contained in:
parent
4e5e2c4d80
commit
26e560b7c1
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
use crate::{runner::Runner, profile::Profile};
|
use crate::{runner::Runner, profile::Profile};
|
||||||
|
|
||||||
pub fn get_build_monado_runner(profile: Profile) -> Runner {
|
pub fn get_build_monado_runner(profile: Profile) -> Runner {
|
||||||
let mut runner = Runner::new(
|
let runner = Runner::new(
|
||||||
None,
|
None,
|
||||||
"./scripts/build_monado.sh".into(),
|
"./scripts/build_monado.sh".into(),
|
||||||
vec![
|
vec![
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue