diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-02 22:50:10 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-03 01:08:43 -0400 |
commit | dcaca30f938f1c28767eb8cf5a21a02289fc3a41 (patch) | |
tree | 9dffe3352b2092de888c00157944ad3e1aa466dd /test/libredbdiff-test.sh | |
parent | 05f431335a5e910fb0cd500be0ded78d4954e82c (diff) |
libredbdiff: Use _prbl for Parabola vars and _arch for Arch vars.
libredbdiff used VARNAME for Parabola variables, and VARNAME_arch for Arch
variables. I found it confusing. Instead, consistently use VARNAME_prbl
for Parabola variables and VARNAME_arch for Arch variables; this allows the
reader to more easily see the parallels between the handling of each.
Diffstat (limited to 'test/libredbdiff-test.sh')
-rw-r--r-- | test/libredbdiff-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libredbdiff-test.sh b/test/libredbdiff-test.sh index 0ded607..8602b5c 100644 --- a/test/libredbdiff-test.sh +++ b/test/libredbdiff-test.sh @@ -7,8 +7,8 @@ common_before() { mkdir -p "$XDG_CONFIG_HOME/libretools" printf '%s\n' \ 'statedir="$PWD"' \ - "mirror='http://repo.parabola.nu/\$repo/os/\$arch'" \ - "mirrorarch='http://mirrors.kernel.org/archlinux/\$repo/os/\$arch'" \ + "mirror_prbl='http://repo.parabola.nu/\$repo/os/\$arch'" \ + "mirror_arch='http://mirrors.kernel.org/archlinux/\$repo/os/\$arch'" \ 'repos=(libre)' \ > $XDG_CONFIG_HOME/libretools/libredbdiff.conf } |