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
/
remote-pwd.js
9 lines
(7 loc)
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
exec
(client, config,
command
) {
return
`当前远程基础路径为:
${config.remoteBaseDir}
`; } module.exports = { name:
"remote-pwd"
,
exec
, };