import.meta.url (example: file:///C:/Users/snip/Downloads/github-artifacts-analyzer/dist/index.js) uses forward slashes and file://${process.argv[1]} (example: file://C:\Users\snip\Downloads\github-artifacts-analyzer\dist\index.js) uses backslashes.
this causes the check below to return false:
if (import.meta.url === `file://${process.argv[1]}`)
from: https://github.com/shanselman/github-artifacts-analyzer/blob/main/src/index.ts#L116
import.meta.url(example:file:///C:/Users/snip/Downloads/github-artifacts-analyzer/dist/index.js) uses forward slashes andfile://${process.argv[1]}(example:file://C:\Users\snip\Downloads\github-artifacts-analyzer\dist\index.js) uses backslashes.this causes the check below to return false:
from: https://github.com/shanselman/github-artifacts-analyzer/blob/main/src/index.ts#L116