Skip to content

Commit

Permalink
Merge remote-tracking branch 'uni/main' into build-airdrop-integrations2
Browse files Browse the repository at this point in the history
  • Loading branch information
shanimal08 committed Sep 27, 2024
2 parents b6aa2bd + 93c1ee2 commit 0e7ff21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# Don't mess with the double quotes and inner escaped quotes
yq eval ".package.productName += \"${{ env.BETA_STRING }}\"" -i tauri.conf.json
yq eval ".package.version += \"-${BETA_DATE}\"" -i tauri.conf.json
yq eval ".tauri.updater.active = \"false"" -i tauri.conf.json
yq eval ".tauri.updater.active = false" -i tauri.conf.json
sed -i.bak -E "s/^version\s*=\s*\"([0-9]+\.[0-9]+\.[0-9]+)\"/version = \"\1-${BETA_DATE}\"/" \
Cargo.toml
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/internal_wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl InternalWallet {
}
Err(_) => {
let passphrase = SafePassword::from(generate_password(32));
let _ = entry.delete_credential();
let _unused = entry.delete_credential();
entry.set_password(&String::from_utf8(passphrase.reveal().clone())?)?;
passphrase
}
Expand Down

0 comments on commit 0e7ff21

Please sign in to comment.