Skip to content

Commit

Permalink
fix: typo in comment in Perl interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
hiphof committed Dec 10, 2024
1 parent b9d67d7 commit 2d2663f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/interpreter/perl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 2d2663f

Please sign in to comment.