steveluscher / sollet-wallet-rescue

A tool to recover your Sollet wallets' seed phrases from your browsers' local databases
MIT License
4 stars 2 forks source link

fix for linux app config folder #4

Closed Arrowana closed 1 year ago

Arrowana commented 1 year ago
    interface IOptions extends minimatch.IOptions {
        ...
        dot?: boolean | undefined;

Allow patterns to match filenames starting with a period, even if the pattern does not explicitly have a period in that spot.

Note that by default, 'a/**' + '/b' will not match a/.d/b, unless dot is set.

steveluscher commented 1 year ago

Now we're cooking! Thanks!