| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3519d74 commit 43677e5
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -33,6 +33,10 @@ const exeExtension = process.platform === 'win32' ? '.exe' : ''; | |||
| 33 | 33 | const exe = 'overlapped-checker' + exeExtension; | |
| 34 | 34 | const exePath = path.join(path.dirname(process.execPath), exe); | |
| 35 | 35 | ||
| 36 | + if (!require('fs').existsSync(exePath)) { | ||
| 37 | + common.skip(exe + ' binary is not available'); | ||
| 38 | + } | ||
| 39 | + | ||
| 36 | 40 | const child = child_process.spawn(exePath, [], { | |
| 37 | 41 | stdio: ['overlapped', 'pipe', 'pipe'] | |
| 38 | 42 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments