summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Burda <dev@sinitax.com>2025-12-05 00:17:05 +0100
committerLouis Burda <dev@sinitax.com>2025-12-05 00:17:05 +0100
commita7231c560dad56ac3d241f0d44af500fb2c5c253 (patch)
tree93508cd00f0426b88e52d90e30bd5e731a319c3c
parentaad7ebbfbf4a51f4f43c5303f96801e0e2312052 (diff)
downloadrbx-master.tar.gz
rbx-master.zip
Rename function to not conflict with binaryHEADmaster
-rwxr-xr-xrbx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rbx b/rbx
index 93a8b78..506003a 100755
--- a/rbx
+++ b/rbx
@@ -16,7 +16,7 @@ rbx_step() {
echo "== $1 == ($(whoami)@$(hostname))" >&2
}
-rbx() {
+rbx_() {
if [ $# -lt 2 ]; then
echo "Usage: rbx HOST FN [ENV..] [-- ARG..]"
exit 1
@@ -59,5 +59,5 @@ rbx() {
if [ "$0" = "${BASH_SOURCE[0]}" ]; then
set -xe
- rbx "$@"
+ rbx_ "$@"
fi