diff options
author | l0gic | 2023-08-28 13:44:08 +0200 |
---|---|---|
committer | l0gic | 2023-08-28 13:44:08 +0200 |
commit | 256a14792673a96d8e6746bf4cfba4282373184c (patch) | |
tree | e5da9caccf80811f223b77d71d1505d8628a697a | |
parent | d1da8f8dda4cf66f3669bde0350db76d57ac94e6 (diff) | |
download | aur-256a14792673a96d8e6746bf4cfba4282373184c.tar.gz |
`cargo update` seems to be unnecessary, for now
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,6 @@ pkgbase = veilid-git pkgdesc = Veilid headless node - pkgver = 0.1.10.r24.g0764667 + pkgver = 0.1.10.r49.g2ab51ae pkgrel = 1 url = https://veilid.com arch = x86_64 @@ -1,6 +1,6 @@ _pkgname="veilid" pkgname="${_pkgname}-git" -pkgver=0.1.10.r24.g0764667 +pkgver=0.1.10.r49.g2ab51ae pkgrel=1 pkgdesc="Veilid headless node" arch=('x86_64') @@ -50,7 +50,8 @@ prepare() { git config submodule.rust-igd/rust-igd.url "${srcdir}/rust-igd" git -c protocol.file.allow=always submodule update - cargo update # for bugsalot. figure out how to get rid of this to enbale reproducible builds + # Uncomment this, if the build fails because of the bugsalot crate + #cargo update cargo fetch --locked --target "${CARCH}-unknown-linux-gnu" } |