UNPKG
rdtool
Version:
latest (1.0.5)
1.0.5
1.0.4
A simple Node.js-based remote deployment tool that makes deployments easier with config files.
rdtool
/
src
/
exec-plugins
/
record-exec-time.js
11 lines
(9 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
exec
(client, config,
command
) { config.startTime = Date.now(); config.startTimeTip =
command
;
return
"已记录当前时间"
; } module.exports = { name:
"record-exec-time"
,
exec
, };