Skip to content

Commit

Permalink
lint and fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Nowak-Liebiediew committed Jul 20, 2023
1 parent da6b933 commit 5b1007f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/tests-dfx/extension.bash
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ EOF
"description": "A longer description.",
"subcommands": {},
"binaries": {
"unknow-linux-gnu-x86_64": {
"unknown-linux-gnu-x86_64": {
"url": "http://localhost:$port/test_extension-v0.1.0-unknown-linux-gnu-x86_64.tar.gz",
"sha256": "$(shasum -a 256 test_extension-v0.1.0-unknown-linux-gnu-x86_64.tar.gz | cut -d ' ' -f 1)"
},
Expand Down
2 changes: 1 addition & 1 deletion src/dfx-core/src/extension/manager/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl ExtensionManager {
.join("extension.json"),
&extension_manifest,
)
.map_err(|e| ExtensionError::SaveExtensionManifestFailed(e))?;
.map_err(ExtensionError::SaveExtensionManifestFailed)?;
}
self.finalize_installation(
extension_name,
Expand Down

0 comments on commit 5b1007f

Please sign in to comment.