View difference between Paste ID: EjNyhGjD and 18b4WhhS
SHOW: | | - or go back to the newest paste.
1
#!/bin/sh
2
set -e
3
root=`hg root`
4
path_id="${root}/.hg/review_id"
5
options=""
6
if [ ! -f ${path_id} ]; then
7
    message=$(mktemp)
8
    vi "${message}"
9-
    options="-F \"${message}\""
9+
    options="-F ${message}"
10
fi
11-
${0}.py -i "${path_id}" ${options} $@
11+
${0}.py -i "${path_id}" ${options} $@
12
rm "${message}"