rdtool
Version:
A simple Node.js-based remote deployment tool that makes deployments easier with config files.
16 lines (14 loc) • 432 B
JavaScript
const { execServerCommand, replacePath } = require("../tools");
async function exec(client, config, command) {
command = replacePath(config, 1, command)
const res = await execServerCommand(client, `mkdir -p ${command}`);
if (!res) {
return `目录创建完成 ${command}`
} else {
return `目录创建失败 ${command}`
}
}
module.exports = {
name: "remote-mkdir",
exec
}