##// END OF EJS Templates
test-histedit: $TESTTMP quoting fixes for Windows...
Matt Harbison -
r27062:e4f2e4f5 default
parent child Browse files
Show More
@@ -524,13 +524,13 b' editors.'
524 2:0e01aeef5fa8 foo1
524 2:0e01aeef5fa8 foo1
525 1:578c7455730c a
525 1:578c7455730c a
526 0:79b99e9c8e49 b
526 0:79b99e9c8e49 b
527 $ cat > $TESTTMP/editor.sh <<EOF
527 $ cat > "$TESTTMP/editor.sh" <<EOF
528 > echo ran editor >> $TESTTMP/editorlog.txt
528 > echo ran editor >> "$TESTTMP/editorlog.txt"
529 > cat \$1 >> $TESTTMP/editorlog.txt
529 > cat \$1 >> "$TESTTMP/editorlog.txt"
530 > echo END >> $TESTTMP/editorlog.txt
530 > echo END >> "$TESTTMP/editorlog.txt"
531 > echo merged foos > \$1
531 > echo merged foos > \$1
532 > EOF
532 > EOF
533 $ HGEDITOR="sh $TESTTMP/editor.sh" hg histedit 1 --commands - 2>&1 <<EOF | fixbundle
533 $ HGEDITOR="sh \"$TESTTMP/editor.sh\"" hg histedit 1 --commands - 2>&1 <<EOF | fixbundle
534 > pick 578c7455730c 1 a
534 > pick 578c7455730c 1 a
535 > pick 0e01aeef5fa8 2 foo1
535 > pick 0e01aeef5fa8 2 foo1
536 > fold b7389cc4d66e 3 foo2
536 > fold b7389cc4d66e 3 foo2
General Comments 0
You need to be logged in to leave comments. Login now