Skip to content

Commit

Permalink
fix: add additional dependencies for credential manager on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 17, 2024
1 parent 2536302 commit 79909cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
sudo apt-get install -y gcc-aarch64-linux-gnu \
libdbus-1-dev \
pkg-config
- name: Setup Cargo Config
run: |
mkdir -p .cargo
Expand Down
2 changes: 1 addition & 1 deletion src/credential_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl CredentialManager {
}

pub fn has_credential(&self, url: &str) -> bool {
true
false
}

pub fn remove_credential(&self, url: &str) {
Expand Down

0 comments on commit 79909cf

Please sign in to comment.