fixed single-line echo out on extra installs
This commit is contained in:
parent
2eb7da5f53
commit
5b16066616
3 changed files with 3 additions and 3 deletions
|
|
@ -152,7 +152,7 @@ dry-run-report(){
|
||||||
|
|
||||||
install(){
|
install(){
|
||||||
if [ ! -f $HOME/.bashrc.d/70-CodeDog.bashrc ] ; then
|
if [ ! -f $HOME/.bashrc.d/70-CodeDog.bashrc ] ; then
|
||||||
run echo -e "$codedog_bashrc" >> $HOME/.bashrc.d/70-CodeDog.bashrc && boxborder "bashc.d/70-CodeDog.bashrc installed..."
|
echo -e "$codedog_bashrc" >> $HOME/.bashrc.d/70-CodeDog.bashrc && boxborder "bashc.d/70-CodeDog.bashrc installed..."
|
||||||
fi
|
fi
|
||||||
export PATH="$PATH:$HOME/devl/CodeDog"
|
export PATH="$PATH:$HOME/devl/CodeDog"
|
||||||
# Check for dependent applications and offer to install
|
# Check for dependent applications and offer to install
|
||||||
|
|
|
||||||
|
|
@ -149,7 +149,7 @@ install(){
|
||||||
run sudo rm -rf /usr/local/go
|
run sudo rm -rf /usr/local/go
|
||||||
run sudo tar -C /usr/local -xzf $tmp_dir/$golang_current
|
run sudo tar -C /usr/local -xzf $tmp_dir/$golang_current
|
||||||
if [ ! -f $HOME/.bashrc.d/11-golang.bashrc ] ; then
|
if [ ! -f $HOME/.bashrc.d/11-golang.bashrc ] ; then
|
||||||
run echo -e "$codedog_bashrc" >> $HOME/.bashrc.d/11-golang.bashrc && \
|
echo -e "$codedog_bashrc" >> $HOME/.bashrc.d/11-golang.bashrc && \
|
||||||
logger boxborder ".bashrc.d/11-golang.bashrc installed..."
|
logger boxborder ".bashrc.d/11-golang.bashrc installed..."
|
||||||
fi
|
fi
|
||||||
export PATH=$PATH:/usr/local/go/bin
|
export PATH=$PATH:/usr/local/go/bin
|
||||||
|
|
|
||||||
|
|
@ -395,7 +395,7 @@ userinstall(){
|
||||||
take-backup $HOME/.bashrc
|
take-backup $HOME/.bashrc
|
||||||
echo -e "$bashrc_append" >> $HOME/.bashrc && boxborder "bashc.d installed..."
|
echo -e "$bashrc_append" >> $HOME/.bashrc && boxborder "bashc.d installed..."
|
||||||
echo -e "$prbl_bashrc" >> $HOME/.bashrc.d/00-prbl.bashrc && boxborder "bashc.d/00-prbl installed..."
|
echo -e "$prbl_bashrc" >> $HOME/.bashrc.d/00-prbl.bashrc && boxborder "bashc.d/00-prbl installed..."
|
||||||
|
fi
|
||||||
|
|
||||||
# Create the quickinfo cache directory
|
# Create the quickinfo cache directory
|
||||||
#mkdir -p $HOME/.quickinfo
|
#mkdir -p $HOME/.quickinfo
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue