Removed console.log()

main
GarryOne 2020-03-25 05:28:27 +02:00
parent 82ccbba7dc
commit f09a8d0277
2 changed files with 18 additions and 20 deletions

19
dist/index.js vendored
View File

@ -481,7 +481,6 @@ const nodeCmd = __webpack_require__(428);
const nodeRsync = __webpack_require__(250);
const { REMOTE_HOST, REMOTE_USER, REMOTE_PORT, SSH_PRIVATE_KEY, DEPLOY_KEY_NAME, SOURCE, TARGET, ARGS, GITHUB_WORKSPACE, HOME } = process.env;
console.log('GITHUB_WORKSPACE', GITHUB_WORKSPACE);
const sshDeploy = (() => {
const rsync = ({ privateKey, port, src, dest, args }) => {
@ -504,14 +503,14 @@ const sshDeploy = (() => {
};
const init = ({
src,
dest,
args,
host = 'localhost',
username,
privateKeyContent,
port
}) => {
src,
dest,
args,
host = 'localhost',
username,
privateKeyContent,
port
}) => {
validateRsync(() => {
const privateKey = addSshKey(privateKeyContent, DEPLOY_KEY_NAME ||'deploy_key');
@ -605,7 +604,7 @@ const validateInputs = (inputs) => {
return input;
});
if (validInputs.length !== inputs.length) {
if (validInputs.length !== Object.keys(inputs).length) {
process.abort();
}
};

View File

@ -6,7 +6,6 @@ const nodeCmd = require('node-cmd');
const nodeRsync = require('rsyncwrapper');
const { REMOTE_HOST, REMOTE_USER, REMOTE_PORT, SSH_PRIVATE_KEY, DEPLOY_KEY_NAME, SOURCE, TARGET, ARGS, GITHUB_WORKSPACE, HOME } = process.env;
console.log('GITHUB_WORKSPACE', GITHUB_WORKSPACE);
const sshDeploy = (() => {
const rsync = ({ privateKey, port, src, dest, args }) => {
@ -29,14 +28,14 @@ const sshDeploy = (() => {
};
const init = ({
src,
dest,
args,
host = 'localhost',
username,
privateKeyContent,
port
}) => {
src,
dest,
args,
host = 'localhost',
username,
privateKeyContent,
port
}) => {
validateRsync(() => {
const privateKey = addSshKey(privateKeyContent, DEPLOY_KEY_NAME ||'deploy_key');
@ -130,7 +129,7 @@ const validateInputs = (inputs) => {
return input;
});
if (validInputs.length !== inputs.length) {
if (validInputs.length !== Object.keys(inputs).length) {
process.abort();
}
};