This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ module.exports = (send) => {
1515 path : 'files/cp' ,
1616 args : sources ,
1717 qs : opts
18- } , callback )
18+ } , ( error ) => callback ( error ) )
1919 } )
2020}
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ module.exports = (send) => {
1212 return send ( {
1313 path : 'files/flush' ,
1414 args : args
15- } , callback )
15+ } , ( error ) => callback ( error ) )
1616 } )
1717}
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ module.exports = (send) => {
1313 path : 'files/mkdir' ,
1414 args : args ,
1515 qs : opts
16- } , callback )
16+ } , ( error ) => callback ( error ) )
1717 } )
1818}
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ module.exports = (send) => {
1515 path : 'files/mv' ,
1616 args : sources ,
1717 qs : opts
18- } , callback )
18+ } , ( error ) => callback ( error ) )
1919 } )
2020}
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ module.exports = (send) => {
2222 path : 'files/rm' ,
2323 args : path ,
2424 qs : opts
25- } , callback )
25+ } , ( error ) => callback ( error ) )
2626 } )
2727}
You can’t perform that action at this time.
0 commit comments