From 2d2663f202b09488f2e1cc2da9e485a86422743b Mon Sep 17 00:00:00 2001 From: Thijs <35424969+hiphof@users.noreply.github.com> Date: Tue, 10 Dec 2024 21:29:26 +0100 Subject: [PATCH] fix: typo in comment in Perl interpreter --- src/script/interpreter/perl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/interpreter/perl.rs b/src/script/interpreter/perl.rs index 371a4f7c..d680cd43 100644 --- a/src/script/interpreter/perl.rs +++ b/src/script/interpreter/perl.rs @@ -8,7 +8,7 @@ use super::{find_interpreter, BashInterpreter, CmdExeInterpreter, Interpreter}; pub(crate) struct PerlInterpreter; -// python interpreter calls either bash or cmd.exe interpreter for activation and then runs python script +// Perl interpreter calls either bash or cmd.exe interpreter for activation and then runs Perl script impl Interpreter for PerlInterpreter { async fn run(&self, args: ExecutionArgs) -> Result<(), std::io::Error> { let perl_script = args.work_dir.join("conda_build_script.pl");