Skip to content

Commit cd1f10b

Browse files
authored
Merge pull request #99 from dgarcia360/fix-update-command
docs: update command
2 parents ddbb3f6 + b26c153 commit cd1f10b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,15 @@ setupenv:
2626
.PHONY: setup
2727
setup:
2828
$(POETRY) install
29-
$(POETRY) update
3029
cd .. && doxygen Doxyfile.in
3130
@if [ ! -d "$(SOURCEDIR)" ]; then mkdir -p "$(SOURCEDIR)"; fi
3231
cp -RL source/* $(SOURCEDIR)
3332
cd $(SOURCEDIR) && find . -name README.md -execdir mv '{}' index.md ';'
3433

34+
.PHONY: update
35+
update:
36+
$(POETRY) update
37+
3538
# Clean commands
3639
.PHONY: pristine
3740
pristine: clean

0 commit comments

Comments
 (0)