Skip to content

Commit

Permalink
Fixed HEAD reference in test lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 committed Nov 2, 2023
1 parent 1a1afff commit 233a568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gulptasks/lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function getProducts(logPaths) {
.split('\n')
.filter(match => !!match),
...ChildProcess
.execSync('git diff HEAD^ HEAD --name-only --diff-filter=ACM')
.execSync('git diff refs/heads/master HEAD --name-only --diff-filter=ACM')
.toString()
.split('\n')
.filter(match => !!match)
Expand Down

0 comments on commit 233a568

Please sign in to comment.