Skip to content

Commit

Permalink
✨ feat: v2.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
synoti21 committed Feb 11, 2024
1 parent f6c7cd7 commit 14c8ebd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ COPY package*.json ./

COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/dist/assets ./src/assets

CMD ["sh","-c", "sleep 15 && npm run start"]

2 changes: 1 addition & 1 deletion src/commands/adminupdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default{
await interaction.reply("권한이 없습니다.")
return;
} else {
const updateLog: string = fs.readFileSync('./src/assets/updatelog.txt', 'utf8');
const updateLog: string = fs.readFileSync('./dist/assets/updatelog.txt', 'utf8');
console.log(updateLog);
await interaction.reply("업데이트 사항을 전송합니다.")
await interaction.followUp(updateLog);
Expand Down

0 comments on commit 14c8ebd

Please sign in to comment.