Skip to content

Commit

Permalink
Consider input from urls instead of config file when input exists
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerfernandes authored and alekseykulikov committed Mar 8, 2023
1 parent f20c024 commit 97b95c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ exports.getInput = function getInputArgs() {
}

// Get and interpolate URLs
urls = urls || interpolateProcessIntoUrls(getList('urls'))
urls = interpolateProcessIntoUrls(getList('urls')) || urls

// Make sure we have either urls or a static-dist-dir
if (!urls && !staticDistDir) {
Expand Down

0 comments on commit 97b95c0

Please sign in to comment.