From 87a5a5a9bc26ae83264549bfb94e4321b0d70ebd Mon Sep 17 00:00:00 2001
From: Matei Adriel <rafaeladriel11@gmail.com>
Date: Mon, 27 May 2019 20:56:01 +0300
Subject: [PATCH] i can deploy things with a custom message with this script

---
 deploy.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy.ts b/deploy.ts
index 8b2a061..a53833e 100644
--- a/deploy.ts
+++ b/deploy.ts
@@ -30,7 +30,7 @@ const run = (command: string): Promise<string> => {
         if (!args.includes("--skipBuild") && !args.includes("-sb"))
             await run("npm run build")
         await run("git add .")
-        await run('git commit -m "${}"')
+        await run(`git commit -m "${message}"`)
         await run("git push origin master")
         await new Promise((res, rej) => {
             console.log("🏃  Updating github pages")