summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-09 18:06:02 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-09 18:06:02 +0200
commit32db61d8ca46aee56641d57eb4c188721985cd40 (patch)
tree4bba16a0e6e856d9ae3efc6308169cd3182e8616
parent:sparkles: added read state (diff)
downloadserver-32db61d8ca46aee56641d57eb4c188721985cd40.tar.xz
:bug: fix build.js?
-rw-r--r--bundle/scripts/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/scripts/build.js b/bundle/scripts/build.js

index 05cf37ce..4266942f 100644 --- a/bundle/scripts/build.js +++ b/bundle/scripts/build.js
@@ -89,7 +89,7 @@ function walk(dir) { var results = []; var list = fs.readdirSync(dir); list.forEach(function (file) { - file = dir + "/" + file; + file = path.join(dir, file); var stat = fs.statSync(file); if (stat && stat.isDirectory()) { /* Recurse into a subdirectory */