1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-15 01:24:27 +02:00
This commit is contained in:
mo8it
2024-04-17 16:11:44 +02:00
parent 7f433ae28f
commit 7005d8a400
4 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ use std::{
use crate::{
embedded::{WriteStrategy, EMBEDDED_FILES},
info_file::Mode,
DEVELOPING_OFFIFICAL_RUSTLINGS,
DEVELOPING_OFFICIAL_RUSTLINGS,
};
pub struct TerminalFileLink<'a> {
@ -51,7 +51,7 @@ impl Exercise {
cmd.arg(command);
// A hack to make `cargo run` work when developing Rustlings.
if DEVELOPING_OFFIFICAL_RUSTLINGS {
if DEVELOPING_OFFICIAL_RUSTLINGS {
cmd.arg("--manifest-path").arg("dev/Cargo.toml");
}