Changeset d38577a


Ignore:
Timestamp:
Sep 4, 2014, 1:22:33 PM (10 years ago)
Author:
Chris Staub <chris@…>
Branches:
clfs-3.0.0-systemd, master, systemd
Children:
56155f9
Parents:
119a034
Message:

Prevent file not found error from bash

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/system-config/common/profile.xml

    r119a034 rd38577a  
    4848
    4949source /etc/locale.conf
    50 for f in /etc/bash_completion.d/*.sh; do source $f; done; unset f
     50
     51for f in /etc/bash_completion.d/*
     52do
     53  if [ -e ${f} ]; then source ${f}; fi
     54done
     55unset f
     56
    5157export INPUTRC=/etc/inputrc
    5258
Note: See TracChangeset for help on using the changeset viewer.