From 6a3c29da66389dba328d4d53616f416427cba18e Mon Sep 17 00:00:00 2001 From: Aditya Thakral Date: Mon, 15 Mar 2021 00:41:06 -0400 Subject: [PATCH] Fix error in setup script --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 94424eb..efa25cb 100755 --- a/setup.sh +++ b/setup.sh @@ -24,7 +24,7 @@ function setup_backend() { rm -rf ./venv echo "Deleting sqlite database..." - rm ./links.db + rm ./links.db || echo "Nothing to delete ¯\_(ツ)_/¯" echo "Creating new virtual environment..." python3 -m venv venv