##// END OF EJS Templates
cat: test output path behvaior when target path does not exist...
Ryan McElroy -
r35009:8154119e default
parent child Browse files
Show More
@@ -119,3 +119,14 b' Environment variable visibility can be e'
119 $ PATTERN='t4' hg log -r '.' -T "{envvars % '{key} -> {value}\n'}" \
119 $ PATTERN='t4' hg log -r '.' -T "{envvars % '{key} -> {value}\n'}" \
120 > --config "experimental.exportableenviron=PATTERN"
120 > --config "experimental.exportableenviron=PATTERN"
121 PATTERN -> t4
121 PATTERN -> t4
122
123 Test behavior of output when directory structure does not already exist
124
125 $ mkdir foo
126 $ echo a > foo/a
127 $ hg add foo/a
128 $ hg commit -qm "add foo/a"
129 $ mkdir output
130 $ hg cat --output "output/%p" foo/a
131 abort: No such file or directory: output/foo/a
132 [255]
General Comments 0
You need to be logged in to leave comments. Login now