small bugfixes
This commit is contained in:
parent
1690c9d8ff
commit
f0fd3e4608
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ contains_element() {
|
||||||
keys="${@:2}"
|
keys="${@:2}"
|
||||||
|
|
||||||
|
|
||||||
for key in "${keys}"; do
|
for key in ${keys}; do
|
||||||
if [ "${key}" == "${target}" ]; then
|
if [ "${key}" == "${target}" ]; then
|
||||||
MATCH=1
|
MATCH=1
|
||||||
return 0
|
return 0
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
#
|
#
|
||||||
Include = /etc/pacman.d/options
|
Include = /etc/pacman.d/options
|
||||||
Include = /etc/pacman.d/repo_*
|
Include = /etc/pacman.d/repo_*
|
||||||
Include = /etc/plain_file_*
|
Include = /etc/pacman.d/plain_file_*
|
||||||
|
|
Loading…
Reference in a new issue