aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorYash Karandikar2020-03-17 09:38:22 -0500
committerYash Karandikar2020-03-17 09:38:22 -0500
commit99c6439816ef270bea96251663745c5cb65df10a (patch)
treed4bafcb21c970b8ee0eec4f596e53a94a41833ca
parent901f2955d5420846b483c3c5512d261f12784c14 (diff)
downloadaur-99c6439816ef270bea96251663745c5cb65df10a.tar.gz
Use new config file location
-rwxr-xr-xhaur4
1 files changed, 2 insertions, 2 deletions
diff --git a/haur b/haur
index 8d2d6305b487..35d4c2419f5f 100755
--- a/haur
+++ b/haur
@@ -9,9 +9,9 @@ if [ -f "$HOME"/.config/haurrc ]; then
# shellcheck source=/dev/null
source "$HOME"/.config/haurrc
else
- if [ -f /etc/haurrc ]; then
+ if [ -f /usr/share/haur/haurrc ]; then
# shellcheck source=/dev/null
- source /etc/haurrc
+ source /usr/share/haur/haurrc
else
die "fatal: No configuration file found"
fi