From 5a99c38afd19c9a839ed9003f37f1fed3e1d34c7 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Mon, 4 Feb 2019 15:36:42 +0100 Subject: [PATCH] Fix typo in pipelines config --- bitbucket-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 6c4c13f4..c406e925 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -37,7 +37,7 @@ aliases: - *setup-tests - npm install --prefix client - npm run "install:cypress" --prefix client - - psl -U $DATABASE_USER -h $DATABASE_HOST -c "create database $DATABASE_NAME" + - psql -U $DATABASE_USER -h $DATABASE_HOST -c "create database $DATABASE_NAME" - python server/manage.py dummy_data - python server/manage.py runserver & - npm run dev --prefix client &