Skip to content

Commit cd7866d

Browse files
committed
fix: dir name
Signed-off-by: sarthakjdev <jsarthak448@gmail.com>
1 parent b730326 commit cd7866d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/create-wapi-app/src/create-bot.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export async function createWhatsappBot(options: {
6262
const deno = packageManagerInUse === PackageManagerEnum.Deno;
6363
await cp(
6464
new URL(
65-
path.resolve(`./template/${deno ? "Deno" : isTypescriptEnabled ? "typeScript" : 'javaScript'}`),
65+
path.resolve(`./template/${deno ? "Deno" : isTypescriptEnabled ? "typescript" : 'javascript'}`),
6666
import.meta.url,
6767
),
6868
root,
@@ -76,7 +76,7 @@ export async function createWhatsappBot(options: {
7676
if (bun) {
7777
await cp(
7878
new URL(
79-
`../template/Bun/${isTypescriptEnabled ? "typeScript" : "javaScript"
79+
`../template/Bun/${isTypescriptEnabled ? "typescript" : "javascript"
8080
}/package.json`,
8181
import.meta.url,
8282
),

0 commit comments

Comments
 (0)