summaryrefslogtreecommitdiffhomepage
path: root/make-tar.sh
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-07 13:48:09 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-10-07 13:48:09 +0200
commit471c6efc13275741a8e70c16e8857ceec3dd2703 (patch)
tree8386bff83cf7e9edcaa65dd3d5bc65305b4c66d8 /make-tar.sh
parent95080ba63ae3a53b2317739154d4c8d5d926d104 (diff)
make-tar: show cygpath -w on cygwin for convenience
Diffstat (limited to 'make-tar.sh')
-rw-r--r--make-tar.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/make-tar.sh b/make-tar.sh
index d3670984..cd5abc56 100644
--- a/make-tar.sh
+++ b/make-tar.sh
@@ -8,6 +8,9 @@ if : &&
zip -9r "${filename}" $(basename "${prefix}")
then
ls -lh -- "${filename}"
+ case "$(uname -s)" in
+ CYGWIN_*) ls -lh -- "$(cygpath -w -- "$filename")";;
+ esac
else
rm -fv -- "${filename}"
exit 1