Skip to content

Commit

Permalink
Updated Odra branch constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
kubaplas committed Jun 17, 2024
1 parent b633e90 commit 9db54ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DEVELOPMENT_ODRA_BRANCH := "release/1.0.0"
DEVELOPMENT_ODRA_BRANCH := "release/1.1.0"
BINARYEN_VERSION := "version_116"
BINARYEN_CHECKSUM := "c55b74f3109cdae97490faf089b0286d3bba926bb6ea5ed00c8c784fc53718fd"

Expand Down
4 changes: 3 additions & 1 deletion src/actions/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ impl BuildAction<'_> {
&contract.struct_name(),
&module_name,
self.project.is_workspace(),
contract.module_crate_name(self.project),
);

let source = paths::wasm_path_in_target(&build_contract, self.project.project_root());
let target =
paths::wasm_path_in_wasm_dir(&contract.struct_name(), &self.project.project_root());
Expand All @@ -63,7 +65,7 @@ impl BuildAction<'_> {
.join(contract.module_crate_name(self.project))
.join("wasm");
command::mkdir(module_wasm_dir.clone());
let mut module_wasm_path = module_wasm_dir.clone().join(&contract.struct_name());
let mut module_wasm_path = module_wasm_dir.clone().join(contract.struct_name());
module_wasm_path.set_extension("wasm");
log::info(format!("Copying to {}", module_wasm_path.display()));
command::cp(source, module_wasm_path);
Expand Down
3 changes: 2 additions & 1 deletion src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ pub fn cargo_build_wasm_files(
contract_name: &str,
module_name: &str,
is_workspace: bool,
crate_name: String,
) {
env::set_var(ODRA_MODULE_ENV_KEY, contract_name);
let build_contract = format!("{}_build_contract", module_name);
Expand All @@ -136,7 +137,7 @@ pub fn cargo_build_wasm_files(
];
if is_workspace {
params.push("--package");
params.push(module_name);
params.push(crate_name.as_str());
}
cargo(current_dir, "build", params);
}
Expand Down

0 comments on commit 9db54ed

Please sign in to comment.