mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 17:05:05 +01:00
fix
This commit is contained in:
parent
3c521f41cf
commit
28193a4cb5
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import * as child_process from 'child_process';
|
||||||
const services = ['bar-service', 'foo-service'];
|
const services = ['bar-service', 'foo-service'];
|
||||||
|
|
||||||
function latestCommitInDirectory(dirname) {
|
function latestCommitInDirectory(dirname) {
|
||||||
return child_process.execSync(`git log --pretty=format:%H -n 1 -- ${dirname}`);
|
return String(child_process.execSync(`git log --pretty=format:%H -n 1 -- ${dirname}`));
|
||||||
}
|
}
|
||||||
|
|
||||||
const serviceVersions = {};
|
const serviceVersions = {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue