diff options
author | Alberto Gireud <agireud@protonmail.com> | 2024-04-03 23:59:53 -0500 |
---|---|---|
committer | Alberto Gireud <agireud@protonmail.com> | 2024-04-03 23:59:53 -0500 |
commit | 02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174 (patch) | |
tree | e910ec75b2bcb5091ae37145db258ade18c11fdf /net-irc | |
parent | net-irc/halloy: new package, add 2024.5 (diff) | |
download | guru-02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174.tar.gz guru-02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174.tar.bz2 guru-02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174.zip |
net-irc/halloy: Ensure build fails if sed command fails
Signed-off-by: Alberto Gireud <agireud@protonmail.com>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/halloy/halloy-2024.5.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-irc/halloy/halloy-2024.5.ebuild b/net-irc/halloy/halloy-2024.5.ebuild index 03109f7cc..b263d5684 100644 --- a/net-irc/halloy/halloy-2024.5.ebuild +++ b/net-irc/halloy/halloy-2024.5.ebuild @@ -551,7 +551,7 @@ src_configure() { if [[ ${PV} != *9999* ]] ; then # Fix cargo.eclass handling of patched dependencies # https://github.com/squidowl/halloy/blob/main/Cargo.toml#L52-L54 - sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" "${ECARGO_HOME}/config" + sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" "${ECARGO_HOME}/config" || die fi cargo_src_configure } |