diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-29 14:36:23 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-29 14:36:23 +0800 |
commit | aea02ec1040ff1155b0b1a1e768f88e3e404b7c0 (patch) | |
tree | 59eb749e8aecba4c4764ca4040fc48e5f78bb0ae /CI | |
parent | 38f72e98a01a6ade00c4e9eae45e7b57679184f2 (diff) | |
download | SoopyV2-aea02ec1040ff1155b0b1a1e768f88e3e404b7c0.tar.gz SoopyV2-aea02ec1040ff1155b0b1a1e768f88e3e404b7c0.tar.bz2 SoopyV2-aea02ec1040ff1155b0b1a1e768f88e3e404b7c0.zip |
- networth page
- networth in stat next to name
- fix to cosmetic optimisation being disabled for some reason
Diffstat (limited to 'CI')
-rw-r--r-- | CI/utils/walk.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CI/utils/walk.js b/CI/utils/walk.js index 101c1cf..4e99caa 100644 --- a/CI/utils/walk.js +++ b/CI/utils/walk.js @@ -23,7 +23,7 @@ var walk = function(dir, done) { }); }; -async function walkP(dir){ +async function walkP(dir){ //walk function but promisified return new Promise((res, rej)=>{ walk(dir, (err, resu)=>{ if(err){ |