This commit is contained in:
usbharu 2024-08-10 14:52:26 +09:00
parent 1fbe3356fc
commit 0b13fce03c
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ jobs:
const command = "git diff origin/" + baseRef + " -- HEAD --name-only --relative=" + key + "\n"; const command = "git diff origin/" + baseRef + " -- HEAD --name-only --relative=" + key + "\n";
const output = execSync(command, {encoding: 'utf8'}); const output = execSync(command, {encoding: 'utf8'});
console.log(output) console.log(output)
if (output.length !== 0) { if (output.trim() === '') {
tags.push(value) tags.push(value)
} }
} }