Skip to content

Commit

Permalink
Made log message resulting from SHA retrieval failure more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
iancooperman committed Sep 22, 2024
1 parent 11a715c commit 2b00f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google-apps-scripts/wins-form-responses/Code.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function main() {
const keyValueFile = "_wins-data.json"
const [keyValueSha, keyValueContent] = ghrequests.getWins(keyValueFile);
if (keyValueSha === false) {
console.log('Ending script...')
console.log('Ending script due to lack of returned SHA from getWins().');
return 1;
}

Expand Down

0 comments on commit 2b00f3b

Please sign in to comment.