# HG changeset patch # User Ilya Tumaykin # Date 1456102250 -10800 # Node ID d7db6772827986cd4e50000ca56f6ec7e268b688 # Parent 6539ab2d189ba81cfef6d335ae103b2116f95f66 unix: use `read -r' rather than just `read' Since we don't care about escaping or field splitting, but just want to exit as soon as user hits key. diff -r 6539ab2d189b -r d7db67728279 plat/unix/update_tags.sh --- a/plat/unix/update_tags.sh Mon Feb 22 03:49:49 2016 +0300 +++ b/plat/unix/update_tags.sh Mon Feb 22 03:50:50 2016 +0300 @@ -100,5 +100,5 @@ if [ $PAUSE_BEFORE_EXIT -eq 1 ]; then printf "Press ENTER to exit..." - read + read -r fi