Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backfill_corrections/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ SHELL:=/bin/bash
OPTIONS=

PYTHON:=env/bin/python
USR_INPUT_DIR=$(shell $(PYTHON) -m delphi_utils get input_dir)
USR_CACHE_DIR=$(shell $(PYTHON) -m delphi_utils get cache_dir)
USR_EXPORT_DIR=$(shell $(PYTHON) -m delphi_utils get export_dir)
USR_INPUT_DIR:=$(shell $(PYTHON) -m delphi_utils get input_dir)
USR_CACHE_DIR:=$(shell $(PYTHON) -m delphi_utils get cache_dir)
USR_EXPORT_DIR:=$(shell $(PYTHON) -m delphi_utils get export_dir)

# Gurobi license
GRB_LICENSE_FILE=./gurobi.lic
Expand Down Expand Up @@ -53,7 +53,7 @@ install-python:
python3 -m venv env
source env/bin/activate && \
pip install wheel && \
pip install delphi_utils
pip install --timeout 1000 delphi_utils

lib:
R -e 'roxygen2::roxygenise("delphiBackfillCorrection")'
Expand Down