3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

Merge branch 'master' of github.com:Dragory/ZeppelinBot

This commit is contained in:
Dragory 2023-11-25 12:06:02 +02:00
commit 09b6d43a5c
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View file

@ -353,6 +353,7 @@ const baseValues = {
return [...args].join("");
},
concatArr(arr, separator = "") {
if (!Array.isArray(arr)) return "";
return arr.join(separator);
},
eq(...args) {

View file

@ -4,6 +4,4 @@ USER node
COPY --chown=node:node . /zeppelin
WORKDIR /zeppelin/backend
RUN ls -lah
RUN pwd
RUN npm ci && npm run build