summaryrefslogtreecommitdiffstats
path: root/cypress/stop.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cypress/stop.sh')
-rwxr-xr-xcypress/stop.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/cypress/stop.sh b/cypress/stop.sh
deleted file mode 100755
index aea0338a..00000000
--- a/cypress/stop.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-# RUN THIS SCRIPT FROM THE ROOT FOLDER OF YOUR APP
-appname=${PWD##*/}
-
-if [[ $appname == "cypress" ]]
-then
- echo "Please run this app from your app root folder."
-else
- echo "Killing server for the $appname app"
- cd cypress
- docker-compose down
-fi