bash: remove debug message from addpath

This commit is contained in:
2020-01-09 08:43:44 +00:00
parent a90d7e9d35
commit 252dfdee9f

1
bashrc
View File

@@ -11,7 +11,6 @@ addpath() {
at_end=$2
FOUND=$(echo $PATH | grep $wanted_path)
if [ $? -ne 0 ] ; then
echo "Found with grep"
if [ "$at_end" == "" ] ; then
export PATH=$wanted_path:$PATH
else