This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ module.exports = (send) => {
15
15
path : 'files/cp' ,
16
16
args : sources ,
17
17
qs : opts
18
- } , callback )
18
+ } , ( error ) => callback ( error ) )
19
19
} )
20
20
}
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ module.exports = (send) => {
12
12
return send ( {
13
13
path : 'files/flush' ,
14
14
args : args
15
- } , callback )
15
+ } , ( error ) => callback ( error ) )
16
16
} )
17
17
}
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ module.exports = (send) => {
13
13
path : 'files/mkdir' ,
14
14
args : args ,
15
15
qs : opts
16
- } , callback )
16
+ } , ( error ) => callback ( error ) )
17
17
} )
18
18
}
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ module.exports = (send) => {
15
15
path : 'files/mv' ,
16
16
args : sources ,
17
17
qs : opts
18
- } , callback )
18
+ } , ( error ) => callback ( error ) )
19
19
} )
20
20
}
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ module.exports = (send) => {
22
22
path : 'files/rm' ,
23
23
args : path ,
24
24
qs : opts
25
- } , callback )
25
+ } , ( error ) => callback ( error ) )
26
26
} )
27
27
}
You can’t perform that action at this time.
0 commit comments