From 112f827e4234bb65463a678a8d9518a14d6089aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Zaj=C4=85c?= Date: Tue, 23 Jan 2024 20:40:29 +0000 Subject: [PATCH] changed permalinks to point to the main repo --- crates/benches/runner/src/deployer.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/benches/runner/src/deployer.rs b/crates/benches/runner/src/deployer.rs index 7c3d4168b1..a5696d4f0d 100644 --- a/crates/benches/runner/src/deployer.rs +++ b/crates/benches/runner/src/deployer.rs @@ -17,7 +17,7 @@ use tokio::process::Command; use crate::KatanaRunner; async fn prepare_migration_args(args: SozoArgs) -> Result { - // Preparing config, as in https://github.com/neotheprogramist/dojo/blob/fec863cb0375a684edd9e7e76c8fdeb9ebf386e6/bin/sozo/src/cli_entry.rs#L29 + // Preparing config, as in https://github.com/dojoengine/dojo/blob/25fbb7fc973cff4ce1273625c4664545d9b088e9/bin/sozo/src/main.rs#L28-L29 let mut compilers = CompilerRepository::std(); let cairo_plugins = CairoPluginRepository::default(); compilers.add(Box::new(DojoCompiler)).unwrap(); @@ -33,13 +33,13 @@ async fn prepare_migration_args(args: SozoArgs) -> Result { .build() .context("failed to build config")?; - // Extractiong migration command, as here https://github.com/neotheprogramist/dojo/blob/fec863cb0375a684edd9e7e76c8fdeb9ebf386e6/bin/sozo/src/commands/mod.rs#L24 + // Extractiong migration command, as here https://github.com/dojoengine/dojo/blob/25fbb7fc973cff4ce1273625c4664545d9b088e9/bin/sozo/src/commands/mod.rs#L24-L25 let mut migrate = match args.command { Commands::Migrate(migrate) => *migrate, _ => return Err(anyhow!("failed to parse migrate args")), }; - // Preparing workspace, as in https://github.com/neotheprogramist/dojo/blob/fec863cb0375a684edd9e7e76c8fdeb9ebf386e6/bin/sozo/src/commands/migrate.rs#L40-L41 + // Preparing workspace, as in https://github.com/dojoengine/dojo/blob/25fbb7fc973cff4ce1273625c4664545d9b088e9/bin/sozo/src/commands/migrate.rs#L40-L41 let ws = scarb::ops::read_workspace(config.manifest_path(), &config)?; if migrate.name.is_none() { if let Some(root_package) = ws.root_package() {