Skip to content

Commit

Permalink
fix unwanted const
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehonal authored Aug 4, 2023
1 parent 5abddfa commit 7066b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion changed-files/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function run() {
if (!requiredPathsInput) {
requiredPathsInput = process.env.REQUIRED_PATHS;
}
const requiredPaths = requiredPathsInput
let requiredPaths = requiredPathsInput
? requiredPathsInput.split(",")
: [];

Expand Down

0 comments on commit 7066b8a

Please sign in to comment.