diff options
Diffstat (limited to 'librerelease')
-rwxr-xr-x | librerelease | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librerelease b/librerelease index c7b21e6..f684e4d 100755 --- a/librerelease +++ b/librerelease @@ -20,9 +20,9 @@ # You should have received a copy of the GNU General Public License # along with Parabola. If not, see <http://www.gnu.org/licenses/>. - -if [-e $XDG_CONFIG_HOME/.libretools.conf]; then - source $XDG_CONFIG_HOME/.libretools.conf +custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf +if [-e $custom_config]; then + source $custom_config else source /etc/libretools.conf fi |