Skip to content

Commit 6f5977d

Browse files
committed
fix: release bundle.
1 parent b41dfc6 commit 6f5977d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aptos-move/aptos-release-builder/src/components/framework.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub fn generate_upgrade_proposals_with_repo(
4343
repo_str,
4444
)?;
4545

46-
for (account, release, move_script_path, script_name) in release_packages.iter() {
46+
for (account, release, move_script_path, script_name) in release_packages.into_iter() {
4747
// If we're generating a single-step proposal on testnet
4848
if is_testnet && next_execution_hash.is_empty() {
4949
release.generate_script_proposal_testnet(account, move_script_path.clone())?;
@@ -163,7 +163,7 @@ pub fn generate_upgrade_proposals_release_packages_with_repo(
163163
let package = BuiltPackage::build(package_path, options)?;
164164
result.push((
165165
account,
166-
ReleasePackage::new(package),
166+
ReleasePackage::new(package)?,
167167
move_script_path,
168168
script_name,
169169
));

0 commit comments

Comments
 (0)