File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28392,6 +28392,7 @@ const exec = __nccwpck_require__(5236);
2839228392const io = __nccwpck_require__(4994);
2839328393const tc = __nccwpck_require__(3472);
2839428394const os = __nccwpck_require__(857);
28395+ const fs = __nccwpck_require__(1943);
2839528396const path = __nccwpck_require__(6928);
2839628397const which = __nccwpck_require__(1189)
2839728398
@@ -28556,6 +28557,7 @@ async function setup(installPath) {
2855628557  }
2855728558
2855828559  // setup paths
28560+   await fs.writeFile(configPath, '{}');
2855928561  await exec.exec('bindiff_config_setup', [
2856028562    '--config', configPath,
2856128563    `directory=${installPath}`,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ const exec = require('@actions/exec');
33const  io  =  require ( "@actions/io" ) ; 
44const  tc  =  require ( '@actions/tool-cache' ) ; 
55const  os  =  require ( 'os' ) ; 
6+ const  fs  =  require ( 'fs/promises' ) ; 
67const  path  =  require ( 'path' ) ; 
78const  which  =  require ( 'which' ) 
89
@@ -167,6 +168,7 @@ async function setup(installPath) {
167168  } 
168169
169170  // setup paths 
171+   await  fs . writeFile ( configPath ,  '{}' ) ; 
170172  await  exec . exec ( 'bindiff_config_setup' ,  [ 
171173    '--config' ,  configPath , 
172174    `directory=${ installPath }  , 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments