diff options
author | 2010-04-19 01:06:54 +0200 | |
---|---|---|
committer | 2010-04-19 01:06:54 +0200 | |
commit | c30b49b0c2d29df01d14bee66497214ada9c6be2 (patch) | |
tree | b308f28a24e4cfae8dd2438ea978a68d729b4821 /bashrc | |
parent | Tweaks, enable vhosts and all Ruby targets. (diff) | |
download | flameeyes-tinderbox-c30b49b0c2d29df01d14bee66497214ada9c6be2.tar.gz flameeyes-tinderbox-c30b49b0c2d29df01d14bee66497214ada9c6be2.tar.bz2 flameeyes-tinderbox-c30b49b0c2d29df01d14bee66497214ada9c6be2.zip |
Rename tweet_me to dent_me.
Diffstat (limited to 'bashrc')
-rwxr-xr-x | bashrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,11 +1,11 @@ # -*- sh -*- -tweet_me() { +dent_me() { echo "$@" | bti --host "${BTI_HOST}" --account "${BTI_ACCOUNT}" --password "${BTI_PASSWORD}" >/dev/null } pre_pkg_setup() { - tweet_me "${CATEGORY}/${PF} merge starting" + dent_me "${CATEGORY}/${PF} merge starting" register_die_hook tinderbox_mask_pkg register_success_hook tinderbox_success @@ -22,12 +22,12 @@ tinderbox_stats() { } tinderbox_success() { - tweet_me "${CATEGORY}/${PF} merge #succeded$(tinderbox_stats)" + dent_me "${CATEGORY}/${PF} merge #succeded$(tinderbox_stats)" } tinderbox_mask_pkg() { [[ ${EBUILD_PHASE} == test ]] && return 0 - tweet_me "${CATEGORY}/${PF} merge #failed$(tinderbox_stats)" + dent_me "${CATEGORY}/${PF} merge #failed$(tinderbox_stats)" SANDBOX_ON=0 sed -i -e "\$a =${CATEGORY}/${PF}" /etc/portage/package.mask/currentrun } |