Skip to content

Commit

Permalink
Do not raise misleading warning (#389)
Browse files Browse the repository at this point in the history
When the input `input_files` is not defined, the 
`config.input_files` will default to an empty array, which always
evaluate to true - that was triggering a warning like "hey man,
the value you inputted on `input_files` didn't yield any files",
which is logically wrong if `input_files` isn't explicitly defined.
  • Loading branch information
Drowze committed Mar 8, 2024
1 parent a6c7483 commit e985949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -60,7 +60,7 @@ async function run() {
});
//);
const rel = await release(config, new GitHubReleaser(gh));
if (config.input_files) {
if (config.input_files && config.input_files.length > 0) {
const files = paths(config.input_files);
if (files.length == 0) {
console.warn(`馃 ${config.input_files} not include valid file.`);
Expand Down

0 comments on commit e985949

Please sign in to comment.