zymp3 being in src didn't make sense

This commit is contained in:
Justin Moore 2015-02-19 03:31:39 -06:00
parent eb90304b17
commit 35f4f014f1

View File

@ -22,19 +22,19 @@ if [ -f ~/.config/Zymp3/zymp3.conf ];then
source ~/.config/Zymp3/zymp3.conf source ~/.config/Zymp3/zymp3.conf
elif [ -f ../config/zymp3.conf ];then elif [ -f config/zymp3.conf ];then
source ../config/zymp3.conf source config/zymp3.conf
else else
echo -e "\e[1;31mERROR: No config file in $HOME/.config/Zymp3/ or ../config/ \e[0m" echo -e "\e[1;31mERROR: No config file in $HOME/.config/Zymp3/ or /config/ \e[0m"
zenity --error --text "No config file in $HOME/.config/Zymp3/ or ../config" zenity --error --text "No config file in $HOME/.config/Zymp3/ or /config"
exit 0; exit 0;
fi fi
} }
chk_libs(){ chk_libs(){
if [ -f ../lib/logic.lib ];then if [ -f lib/logic.lib ];then
source ../lib/logic.lib source lib/logic.lib
else else
echo -e "\e[1;31mERROR: No libraries file found in ../libs \e[0m" echo -e "\e[1;31mERROR: No libraries file found in ../libs \e[0m"