( options = {} )
| 26 | |
| 27 | // https://stork-search.net/docs/install |
| 28 | export function getStorkExecutableDownloadUrl ( options = {} ) { |
| 29 | const target = getStorkExecutableTarget( options ) |
| 30 | |
| 31 | return `https://files.stork-search.net/releases/v${ storkVersion }/${ target }` |
| 32 | } |
| 33 | |
| 34 | // Check if a file is executable |
| 35 | // https://stackoverflow.com/a/69897809/1397641 |
no test coverage detected