Skip to content

Commit

Permalink
update git
Browse files Browse the repository at this point in the history
  • Loading branch information
rahxephon89 committed Dec 3, 2024
1 parent 28ffdfe commit 5d875b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aptos-move/aptos-e2e-comparison-testing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ async fn download_aptos_packages(path: &Path) -> anyhow::Result<()> {
let git_url = "https://github.com/aptos-labs/aptos-core";
let tmp_dir = TempDir::new()?;
Command::new("git")
.args(["clone", git_url, tmp_dir.path().to_str().unwrap()])
.args(["clone", "--branch", "igor/use_native_vector_move_range", git_url, tmp_dir.path().to_str().unwrap(), "--depth", "1"])
.output()
.map_err(|_| anyhow::anyhow!("Failed to clone Git repository"))?;
let source_framework_path = PathBuf::from(tmp_dir.path()).join("aptos-move/framework");
Expand Down

0 comments on commit 5d875b5

Please sign in to comment.