Skip to content

Commit 5dfb7aa

Browse files
committed
change variable to make it readable in bash
1 parent ea240d5 commit 5dfb7aa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/d2_docker/commands/start.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ def start(args):
9898
)
9999

100100
deploy_path = "/" + re.sub("^/*", "", args.deploy_path) if args.deploy_path else ""
101-
strict_sql = False
101+
strict_sql = ""
102102
post_sql_dir = args.run_sql
103103
if args.run_sql and args.strict_sql:
104-
strict_sql = True
104+
strict_sql = "True"
105105

106106
with utils.stop_docker_on_interrupt(image_name, core_image):
107107
utils.run_docker_compose(

src/d2_docker/config/dhis2-core-start.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ homedir="/dhis2-home-files"
2626
scripts_dir="/data/scripts"
2727
root_db_path="/data/db"
2828
post_db_path="/data/db/post"
29-
post_strict_db_path="/data/db/post_strict_sql"
3029
source_apps_path="/data/apps"
3130
source_documents_path="/data/document"
3231
source_datavalues_path="/data/dataValue"

0 commit comments

Comments
 (0)