Show More
@@ -1407,12 +1407,12 b' HGPLAIN setting in hooks' | |||
|
1407 | 1407 | |
|
1408 | 1408 | $ cat << EOF >> .hg/hgrc |
|
1409 | 1409 | > [hooks] |
|
1410 | > pre-version.testing-default=echo '### default ###' plain: \${HGPLAIN:-'<unset>'} | |
|
1411 | > pre-version.testing-yes=echo '### yes #######' plain: \${HGPLAIN:-'<unset>'} | |
|
1410 | > pre-version.testing-default=sh -c "echo '### default ###' plain: \${HGPLAIN:-'<unset>'}" | |
|
1411 | > pre-version.testing-yes=sh -c "echo '### yes #######' plain: \${HGPLAIN:-'<unset>'}" | |
|
1412 | 1412 | > pre-version.testing-yes:run-with-plain=yes |
|
1413 | > pre-version.testing-no=echo '### no ########' plain: \${HGPLAIN:-'<unset>'} | |
|
1413 | > pre-version.testing-no=sh -c "echo '### no ########' plain: \${HGPLAIN:-'<unset>'}" | |
|
1414 | 1414 | > pre-version.testing-no:run-with-plain=no |
|
1415 | > pre-version.testing-auto=echo '### auto ######' plain: \${HGPLAIN:-'<unset>'} | |
|
1415 | > pre-version.testing-auto=sh -c "echo '### auto ######' plain: \${HGPLAIN:-'<unset>'}" | |
|
1416 | 1416 | > pre-version.testing-auto:run-with-plain=auto |
|
1417 | 1417 | > EOF |
|
1418 | 1418 |
General Comments 0
You need to be logged in to leave comments.
Login now