File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ exports.setAccessibilityEventListeners = (bsConfig) => {
224
224
225
225
const isPattern = glob . hasMagic ( supportFilesData . supportFile ) ;
226
226
if ( ! isPattern ) {
227
- console . log ( `Using user defined support file: ${ supportFilesData . supportFile } ` ) ;
227
+ logger . debug ( `Using user defined support file: ${ supportFilesData . supportFile } ` ) ;
228
228
let file ;
229
229
try {
230
230
file = process . cwd ( ) + supportFilesData . supportFile ;
Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ exports.getSupportFiles = (bsConfig, isA11y) => {
390
390
supportFile = userSupportFile [ 0 ] ;
391
391
}
392
392
} catch ( err ) { }
393
- if ( supportFile && ! path . isAbsolute ( supportFile ) ) supportFile = '/' + supportFile ;
393
+ if ( supportFile && supportFile [ 0 ] != '/' ) supportFile = '/' + supportFile ; ;
394
394
return {
395
395
supportFile,
396
396
cleanupParams : Object . keys ( cleanupParams ) . length ? cleanupParams : null
You can’t perform that action at this time.
0 commit comments