Skip to content

Commit

Permalink
Fix util to download into ts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
junderw committed Mar 26, 2019
1 parent 9f805df commit 6dedef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/wordlists.js
Expand Up @@ -43,7 +43,7 @@ function toJSON (content) {
}

function save (name, wordlist) {
var location = path.join(__dirname, '..', 'wordlists', name + '.json')
var location = path.join(__dirname, '..', 'ts_src', 'wordlists', name + '.json')
var content = JSON.stringify(wordlist, null, 2) + '\n'
log('save ' + wordlist.length + ' words to ' + location)

Expand Down

0 comments on commit 6dedef0

Please sign in to comment.