diff options
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r-- | cli/tools/repl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index 7ca229ab3..110a89f14 100644 --- a/cli/tools/repl/mod.rs +++ b/cli/tools/repl/mod.rs @@ -70,7 +70,7 @@ async fn read_eval_file( .fetch(&specifier, &mut Permissions::allow_all()) .await?; - Ok((*file.source).clone()) + Ok((*file.source).to_string()) } pub async fn run( |