From 4be49d607a1aaeeece8b4092f357cbbfbbc52047 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 3 Jan 2021 11:20:23 -0500 Subject: [PATCH] update hush-cli --- hush-cli | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/hush-cli b/hush-cli index bf45110..785583a 100755 --- a/hush-cli +++ b/hush-cli @@ -1,5 +1,6 @@ #!/bin/bash -# Copyright (c) 2019 Hush developers +# Copyright (c) 2016-2020 The Hush developers +# Released under the GPLv3 # set working directory to the location of this script # readlink -f does not always exist @@ -12,10 +13,11 @@ NAME=HUSH3 CLI=${KOMODOCLI:-./komodo-cli} if [ -f $CLI ]; then - $CLI -ac_name=$NAME "$@" + $CLI -ac_name=$NAME "$@" else - # We prefix our binary when installed - # system wide on Debain system, to prevent clashes - CLI=hush-komodo-cli + # We prefix our binary when installed + # system wide on Debain systems, to prevent clashes, + # because we are classy like that. Fuck jl777, The KYC Traitor. + CLI=hush-komodo-cli $CLI -ac_name=$NAME "$@" fi