File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dev-packages/e2e-tests/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ function run(): void {
46
46
} ,
47
47
} ) ;
48
48
49
- const { base, head, optional } = values ;
49
+ const { base, head = 'HEAD' , optional } = values ;
50
50
51
51
const testApplications = globSync ( '*/package.json' , {
52
52
cwd : `${ __dirname } /../test-applications` ,
@@ -174,7 +174,7 @@ function getAffectedTestApplications(
174
174
}
175
175
176
176
function getChangedTestApps ( base : string , head ?: string ) : false | Set < string > {
177
- const changedFiles = execSync ( `git diff --name-only ${ base } ${ head ? `..${ head } ` : '' } -- dev-packages/e2e-tests/ ` , {
177
+ const changedFiles = execSync ( `git diff --name-only ${ base } ${ head ? `..${ head } ` : '' } -- . ` , {
178
178
encoding : 'utf-8' ,
179
179
} )
180
180
. toString ( )
You can’t perform that action at this time.
0 commit comments