From bbcf9aee343b350b4e8385c691986b221e755d5b Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Thu, 10 Jun 2021 20:06:12 +0100 Subject: [PATCH] add deploy scripts. --- deploy-production.sh | 0 deploy-staging.sh | 0 install.sh | 4 ++++ 3 files changed, 4 insertions(+) mode change 100644 => 100755 deploy-production.sh mode change 100644 => 100755 deploy-staging.sh diff --git a/deploy-production.sh b/deploy-production.sh old mode 100644 new mode 100755 diff --git a/deploy-staging.sh b/deploy-staging.sh old mode 100644 new mode 100755 diff --git a/install.sh b/install.sh index 80ef1c3f23..a916778a3c 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,9 @@ #!/bin/bash +# Make scripts runable +chmod +x deploy-staging.sh +chmod +x deploy-production.sh + # This script runs the local development server in Docker. if [[ ! $(which docker) && ! $(docker --version) ]]; then echo -e "\033[91mPlease install Docker. https://docs.docker.com/install"