@@ -113,7 +113,13 @@ var createDirs = function(dirs, to, options, callback) {
113
113
if ( to && typeof to === 'string' ) {
114
114
fs . stat ( to , stack . add ( function ( err , s ) {
115
115
if ( s && ! s . isDirectory ( ) ) {
116
- options . errors . push ( new Error ( to + ' exists and is not a directory, can not create' ) ) ;
116
+ /*istanbul ignore next*/
117
+ err = new Error ( to + ' exists and is not a directory, can not create' ) ;
118
+ /*istanbul ignore next*/
119
+ err . code = 'ENOTDIR' ;
120
+ /*istanbul ignore next*/
121
+ err . errno = 27 ;
122
+ options . errors . push ( err ) ;
117
123
} else {
118
124
mkdirp ( to , stat . mode , stack . add ( function ( err ) {
119
125
/*istanbul ignore next*/
@@ -135,13 +141,19 @@ var copyFile = function(from, to, options, callback) {
135
141
var dir = path . dirname ( to ) ;
136
142
mkdirp ( dir , function ( ) {
137
143
fs . stat ( to , function ( statError ) {
144
+ var err ;
138
145
if ( ! statError && options . overwrite !== true ) {
139
- return callback ( new Error ( 'File ' + to + ' exists' ) ) ;
146
+ /*istanbul ignore next*/
147
+ err = new Error ( 'File ' + to + ' exists' ) ;
148
+ /*istanbul ignore next*/
149
+ err . code = 'EEXIST' ;
150
+ /*istanbul ignore next*/
151
+ err . errno = 47 ;
152
+ return callback ( err ) ;
140
153
}
141
154
142
155
var fromFile = fs . createReadStream ( from ) ,
143
156
toFile = fs . createWriteStream ( to ) ,
144
- err ,
145
157
called = false ,
146
158
cb = function ( e ) {
147
159
if ( ! called ) {
0 commit comments