aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2014-09-17 16:28:51 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2014-09-17 16:28:51 +0000
commit57cdacebb2adce1caa6483ae9f20a185e7034407 (patch)
tree8a4594c162d68801c496642f44b3f6d9a6b98264
parent8968bdc5a10fcd6e0e2fecc92e5014299430bf6e (diff)
downloadports-57cdacebb2adce1caa6483ae9f20a185e7034407.tar.gz
ports-57cdacebb2adce1caa6483ae9f20a185e7034407.zip
MFH r367994:
@sample: Alert user that there is a stale file to be removed.
Notes
Notes: svn path=/branches/2014Q3/; revision=368396
-rw-r--r--Keywords/sample.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/Keywords/sample.yaml b/Keywords/sample.yaml
index 4d56793acca1..7b22a75be9a2 100644
--- a/Keywords/sample.yaml
+++ b/Keywords/sample.yaml
@@ -26,4 +26,6 @@ pre-deinstall: |
target_file="${sample_file%.sample}"
if cmp -s "${target_file}" "${sample_file}"; then
rm -f "${target_file}"
+ else
+ echo "You may need to manually remove ${target_file} if it's no longer needed."
fi