summaryrefslogtreecommitdiff
path: root/waterfox-g/stackrpms-diff.sh
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox-g/stackrpms-diff.sh')
-rwxr-xr-xwaterfox-g/stackrpms-diff.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/waterfox-g/stackrpms-diff.sh b/waterfox-g/stackrpms-diff.sh
index 96c953c..12425d3 100755
--- a/waterfox-g/stackrpms-diff.sh
+++ b/waterfox-g/stackrpms-diff.sh
@@ -3,7 +3,7 @@
# Reference: scite/stackrpms-diff.sh
# Usage: stackrpms/waterfox-g/stackrpms-diff.sh | vi -
# Purpose: handle the renamed files because of dropping the -kpe suffix
-left="/usr/src/waterfox/waterfox-deb-rpm-arch-AppImage/waterfox-g-kpe"
+left="/usr/src/waterfox/waterfox-deb-rpm-arch-AppImage/waterfox-kde"
right="stackrpms/waterfox-g/debian"
cd ~/dev
# do diff color=always if this is going to a terminal
@@ -16,9 +16,9 @@ diff -x '.*.swp' \
-aur "${left}" "${right}"
for word in dirs dsc install links lintian-overrides manpages postinst postrm preinst prerm links ;
do
- _result="$( diff --color="${_diff_color}" -aur "${left}/waterfox-g-kpe.${word}" "${right}/waterfox-g.${word}" )"
+ _result="$( diff --color="${_diff_color}" -aur "${left}/waterfox-kde.${word}" "${right}/waterfox.${word}" )"
test -n "${_result}" && {
- echo diff -aur "${left}/waterfox-g-kpe.${word}" "${right}/waterfox-g.${word}"
+ echo diff -aur "${left}/waterfox-kde.${word}" "${right}/waterfox.${word}"
echo "${_result}"
}
done
bgstack15