From 867071eca086f3ee1be581556de89674773b4103 Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Mon, 19 Apr 2021 22:37:20 +0200 Subject: [PATCH] Add prefix to bash completion install function --- installCompletion.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installCompletion.sh b/installCompletion.sh index e4255d9..e5b5ed5 100755 --- a/installCompletion.sh +++ b/installCompletion.sh @@ -1,6 +1,6 @@ #!/bin/bash -sequencerCompletion() { +_sequencerCompletion() { local SEQBASE="/opt/sequencer" local SEQCOMP_LOC="$SEQBASE/sqnall-completion.bash" local SEQCOMP_LOADER="$(realpath ~/.bashrc)" @@ -16,5 +16,4 @@ sequencerCompletion() { source "$SEQCOMP_LOC" } -sequencerCompletion - +_sequencerCompletion