Skip to content

Commit

Permalink
Fix python venv in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelloPerathoner committed May 1, 2024
1 parent 3d8b279 commit 9d80812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xslt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CAPITS := $(patsubst $(CAPIT_DIR)/%.xml,%,$(CAPIT_FILES))

XSLTPROC := /usr/bin/xsltproc --nonet --novalid --nomkdir
SAXON := /usr/bin/saxon
IMPORT := cd ../server; python3 -m scripts.import_data -vv -c ./server.conf
IMPORT := cd ../server; ../.venv/bin/python3 -m scripts.import_data -vv -c ./server.conf

TOUCH = mkdir -p $(dir $@) && touch "$@"
CLEAN_TARGET_DIR = rm -rf $(dir $@) && mkdir -p $(dir $@)
Expand Down

0 comments on commit 9d80812

Please sign in to comment.