mirror of
https://github.com/naveenrajm7/rpmbuild.git
synced 2025-07-12 04:13:50 +00:00
using args
This commit is contained in:
@ -65,7 +65,7 @@ function run() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
options.cwd = '/github/home/rpmbuild/SRPMS/';
|
options.cwd = '/github/home/rpmbuild/SRPMS/';
|
||||||
yield exec.exec('ls', options);
|
yield exec.exec('ls', ['-C'], options);
|
||||||
core.setOutput("source_rpm_path", `/github/home/rpmbuild/SRPMS/${myOutput}`); // make option to upload source rpm
|
core.setOutput("source_rpm_path", `/github/home/rpmbuild/SRPMS/${myOutput}`); // make option to upload source rpm
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
|
@ -74,7 +74,7 @@ async function run() {
|
|||||||
};
|
};
|
||||||
options.cwd = '/github/home/rpmbuild/SRPMS/';
|
options.cwd = '/github/home/rpmbuild/SRPMS/';
|
||||||
|
|
||||||
await exec.exec('ls', options);
|
await exec.exec('ls', [ '-C' ], options);
|
||||||
|
|
||||||
core.setOutput("source_rpm_path", `/github/home/rpmbuild/SRPMS/${myOutput}`); // make option to upload source rpm
|
core.setOutput("source_rpm_path", `/github/home/rpmbuild/SRPMS/${myOutput}`); // make option to upload source rpm
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user