Skip to content

Commit

Permalink
Merge pull request #393 from GateNLP/install-script-syntax-error
Browse files Browse the repository at this point in the history
Install script syntax error
  • Loading branch information
ianroberts authored Oct 9, 2023
2 parents 8242390 + 2582c2d commit 5b9128c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/get-teamware.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ set -a

if [ -f .env -a -f docker-compose.yml ]; then

if [ ! ( -f create-django-db.sh -a -f generate-docker-env.sh ) ]; then
if ! [ -f create-django-db.sh -a -f generate-docker-env.sh ]; then
echo 'You have run this upgrade script in a folder that contains a docker compose'
echo 'application stack, but it does not appear to be an installation of GATE'
echo 'Teamware. You should run this script either in a completely empty directory'
Expand Down

0 comments on commit 5b9128c

Please sign in to comment.