mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2025-08-14 22:15:05 +00:00
more spaghetti at the wall
This commit is contained in:
parent
2863e02eda
commit
034d210969
8
dist/index.js
vendored
8
dist/index.js
vendored
@ -667,10 +667,10 @@ function run() {
|
|||||||
const userArguments = getUserArguments();
|
const userArguments = getUserArguments();
|
||||||
if ('' !== userArguments.knownHosts) {
|
if ('' !== userArguments.knownHosts) {
|
||||||
try {
|
try {
|
||||||
yield exec.exec(`mkdir -v -p $HOME/.ssh`);
|
yield exec.exec(`mkdir -v -p ${process.env['HOME']}/.ssh`);
|
||||||
yield exec.exec(`chmod 700 $HOME/.ssh`);
|
yield exec.exec(`chmod 700 ${process.env['HOME']}/.ssh`);
|
||||||
yield exec.exec(`echo ${userArguments.knownHosts} > $HOME/.ssh/known_hosts`);
|
yield exec.exec(`echo "${userArguments.knownHosts}" > ${process.env['HOME']}/.ssh/known_hosts`);
|
||||||
yield exec.exec(`chmod 755 $HOME/.ssh/known_hosts`);
|
yield exec.exec(`chmod 755 ${process.env['HOME']}/.ssh/known_hosts`);
|
||||||
console.log("✅ Configured known_hosts");
|
console.log("✅ Configured known_hosts");
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
|
@ -6,10 +6,10 @@ async function run() {
|
|||||||
const userArguments = getUserArguments();
|
const userArguments = getUserArguments();
|
||||||
if ( '' !== userArguments.knownHosts ) {
|
if ( '' !== userArguments.knownHosts ) {
|
||||||
try {
|
try {
|
||||||
await exec.exec(`mkdir -v -p $HOME/.ssh`);
|
await exec.exec(`mkdir -v -p ${process.env['HOME']}/.ssh`);
|
||||||
await exec.exec(`chmod 700 $HOME/.ssh`);
|
await exec.exec(`chmod 700 ${process.env['HOME']}/.ssh`);
|
||||||
await exec.exec(`echo ${userArguments.knownHosts} > $HOME/.ssh/known_hosts`);
|
await exec.exec(`echo "${userArguments.knownHosts}" > ${process.env['HOME']}/.ssh/known_hosts`);
|
||||||
await exec.exec(`chmod 755 $HOME/.ssh/known_hosts`);
|
await exec.exec(`chmod 755 ${process.env['HOME']}/.ssh/known_hosts`);
|
||||||
console.log("✅ Configured known_hosts");
|
console.log("✅ Configured known_hosts");
|
||||||
} catch( error ) {
|
} catch( error ) {
|
||||||
console.error("⚠️ Error configuring known_hosts")
|
console.error("⚠️ Error configuring known_hosts")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user