Skip to content

Commit

Permalink
fix non-existent directory error
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-schott committed Dec 19, 2023
1 parent b8370ff commit 1111971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leo/cli/commands/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl Command for Build {
let home_path = context.home()?;

// Open the build directory.
let build_directory = BuildDirectory::open(&package_path)?;
let build_directory = BuildDirectory::create(&package_path)?;

// Get the program id.
let manifest = context.open_manifest()?;
Expand Down

0 comments on commit 1111971

Please sign in to comment.