Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

commit 930e980cefd16e48e2be07a316f545a23b1056e2
parent eb1ebcda23cf9bc3a7286a33dd1532af75fa21ac
Author: Demonstrandum <moi@knutsen.co>
Date:   Tue, 28 Jul 2020 22:56:58 +0100

source -> .

Diffstat:
Mbuild.sh | 2+-
Mstart.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sh b/build.sh @@ -14,6 +14,6 @@ echo "${bold}Compiling TypeScript...${reset}" ./node_modules/.bin/tsc -b ./tsconfig.json -[ -f "./.env" ] && source ./.env +[ -f "./.env" ] && . ./.env echo -e "\n${bold}Build done.${reset}" diff --git a/start.sh b/start.sh @@ -2,7 +2,7 @@ yarn install yarn build -source ./.env +. ./.env # Starting the bot. PID="$(sh -c 'echo $$; exec yarn start >./.log 2>&1' &)"