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) => {
224224
225225 const isPattern = glob . hasMagic ( supportFilesData . supportFile ) ;
226226 if ( ! isPattern ) {
227- console . log ( `Using user defined support file: ${ supportFilesData . supportFile } ` ) ;
227+ logger . debug ( `Using user defined support file: ${ supportFilesData . supportFile } ` ) ;
228228 let file ;
229229 try {
230230 file = process . cwd ( ) + supportFilesData . supportFile ;
Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ exports.getSupportFiles = (bsConfig, isA11y) => {
390390 supportFile = userSupportFile [ 0 ] ;
391391 }
392392 } catch ( err ) { }
393- if ( supportFile && ! path . isAbsolute ( supportFile ) ) supportFile = '/' + supportFile ;
393+ if ( supportFile && supportFile [ 0 ] != '/' ) supportFile = '/' + supportFile ; ;
394394 return {
395395 supportFile,
396396 cleanupParams : Object . keys ( cleanupParams ) . length ? cleanupParams : null
You can’t perform that action at this time.
0 commit comments