##// END OF EJS Templates
test-rebase-interruptions: stabilize for Windows...
Matt Harbison -
r33170:4b0da963 default
parent child Browse files
Show More
@@ -333,7 +333,12 b' Test rebase interrupted by hooks'
333
333
334 $ cp -R a3 hook-pretxncommit
334 $ cp -R a3 hook-pretxncommit
335 $ cd hook-pretxncommit
335 $ cd hook-pretxncommit
336 $ hg rebase --source 2 --dest 5 --tool internal:other --config 'hooks.pretxncommit=hg log -r $HG_NODE | grep "summary: C"'
336 #if windows
337 $ NODE="%HG_NODE%"
338 #else
339 $ NODE="\$HG_NODE"
340 #endif
341 $ hg rebase --source 2 --dest 5 --tool internal:other --config "hooks.pretxncommit=hg log -r $NODE | grep \"summary: C\""
337 rebasing 2:965c486023db "C"
342 rebasing 2:965c486023db "C"
338 summary: C
343 summary: C
339 rebasing 6:a0b2430ebfb8 "F" (tip)
344 rebasing 6:a0b2430ebfb8 "F" (tip)
General Comments 0
You need to be logged in to leave comments. Login now