index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-05-04 09:44:32 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-04 09:44:32 +0200 |
commit | 567e716c8696754f4b3323f962a616e9be12115d (patch) | |
tree | 876eb22b3914ec4735d4ccf834bbf3f47c312401 /lib/common-functions | |
parent | 0bc88d347f7d5f3b4fc51e277c3e0489d34dfe04 (diff) |
-rwxr-xr-x | lib/common-functions | 16 |
diff --git a/lib/common-functions b/lib/common-functions index 038af38..86b8aaa 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -921,10 +921,18 @@ extract_pkgname_epoch_pkgver_pkgrel_sub_pkgrel_arch_from_package_name() { fi } -# irc_say -# say content of stdin in irc channel +# irc_say $channel +# say content of stdin in irc channel $channel (default: #archlinux32) + +# shellcheck disable=SC2120 irc_say() { - if [ -p "${irc_dir}/#archlinux32/in" ]; then - sponge "${irc_dir}/#archlinux32/in" + local channel + if [ -z "$1" ]; then + channel='#archlinux32' + else + channel="$1" + fi + if [ -p "${irc_dir}/${channel}/in" ]; then + sponge "${irc_dir}/${channel}/in" fi } |