$HOME /github/home/

This commit is contained in:
Naveenraj M
2020-03-29 22:32:28 +05:30
parent b9885f9c7d
commit e049dc847d
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ function run() {
// Get tar.gz file of release
yield download_tar(owner, repo, ref).then(function (filePath) {
console.log(`Tar Path for copy : ${filePath}`);
io.cp(`${repo}-1.0.tar.gz`, '/root/rpmbuild/SOURCES');
io.cp(`${repo}-1.0.tar.gz`, '/github/home/rpmbuild/SOURCES/');
}).catch(function (error) {
console.log(error);
});

View File

@ -32,7 +32,7 @@ async function run() {
ref
).then( function(filePath){
console.log(`Tar Path for copy : ${filePath}`);
io.cp(`${repo}-1.0.tar.gz`, '/root/rpmbuild/SOURCES');
io.cp(`${repo}-1.0.tar.gz`, '/github/home/rpmbuild/SOURCES/');
}).catch(function(error){
console.log(error);
});