Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 23, 2024
1 parent 43cf678 commit ead8466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/fetch_icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ try {
}

console.log("Files changed", filesChanged);
core.setOutput("files_changed", filesChanged);
core.setOutput("files_changed", false); //TODO: Luke change this
} catch (error) {
core.setFailed(error.message);
}
1 change: 1 addition & 0 deletions scripts/utils/checkGit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { execSync } from "child_process";
* @returns string[] - List of files that have changed
*/
const getAllChangedFiles = (): string[] => {
console.log("git diff HEAD");
const diffOutput = execSync(`git diff HEAD --name-only`).toString();
if (diffOutput != "") {
console.log("Files changed:", diffOutput);
Expand Down

0 comments on commit ead8466

Please sign in to comment.