echo $HOME in run container

This commit is contained in:
Naveenraj M
2020-03-29 23:37:05 +05:30
parent dbee31ede8
commit 20324b2b3a
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ function run() {
console.log(error); console.log(error);
}); });
//console.log(`Tar Path for copy : ${tarBallPath}`); //console.log(`Tar Path for copy : ${tarBallPath}`);
yield exec.exec('echo $HOME');
// Get repo files from /github/workspace/ // Get repo files from /github/workspace/
yield exec.exec('ls -la '); yield exec.exec('ls -la ');
yield io.cp(`${repo}-1.0.tar.gz`, '/root/rpmbuild/SOURCES/'); yield io.cp(`${repo}-1.0.tar.gz`, '/root/rpmbuild/SOURCES/');

View File

@ -38,6 +38,7 @@ async function run() {
}); });
//console.log(`Tar Path for copy : ${tarBallPath}`); //console.log(`Tar Path for copy : ${tarBallPath}`);
await exec.exec('echo $HOME');
// Get repo files from /github/workspace/ // Get repo files from /github/workspace/
await exec.exec('ls -la '); await exec.exec('ls -la ');