diff options
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs index 2f2015542..791aa6409 100644 --- a/cli/tsc/mod.rs +++ b/cli/tsc/mod.rs @@ -824,9 +824,9 @@ pub fn exec(request: Request) -> Result<Response, AnyError> { }); runtime - .execute_script(&located_script_name!(), startup_source) + .execute_script(located_script_name!(), startup_source) .context("Could not properly start the compiler runtime.")?; - runtime.execute_script(&located_script_name!(), &exec_source)?; + runtime.execute_script(located_script_name!(), exec_source)?; let op_state = runtime.op_state(); let mut op_state = op_state.borrow_mut(); |