Skip to content

Commit

Permalink
trust-check: fix url / causing auweb error
Browse files Browse the repository at this point in the history
release 0.11.1
  • Loading branch information
alexheretic committed Feb 5, 2022
1 parent b5da1de commit d3cd4ce
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion aur
Submodule aur updated from aa1072 to 9c1d8d
2 changes: 1 addition & 1 deletion bin/aurto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## aurto commands, see bottom help output

set -Eeuo pipefail
version="0.11.0"
version="0.11.1"
command=${1:-}
arg1=${2:-}

Expand Down
32 changes: 16 additions & 16 deletions trust-check/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion trust-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "trust-check"
version = "0.1.0"
authors = ["Alex Butler <[email protected]>"]
edition = "2018"
publish = false

[dependencies]
curl = "0.4"
Expand All @@ -11,4 +12,4 @@ json = "0.12"
[profile.release]
lto = true
panic = "abort"
opt-level = "s"
opt-level = "s"
2 changes: 1 addition & 1 deletion trust-check/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static GLOBAL: System = System;

type Res<T> = Result<T, Box<dyn Error>>;

const AURWEB_INFO: &str = "https://aur.archlinux.org/rpc/?v=5&type=info";
const AURWEB_INFO: &str = "https://aur.archlinux.org/rpc?v=5&type=info";
const LOCAL_TRUST_PATH: &str = "/etc/aurto/trusted-users";

fn main() -> Res<()> {
Expand Down

0 comments on commit d3cd4ce

Please sign in to comment.