Skip to content

Commit 6e95365

Browse files
committed
fix: revert makefile to default
1 parent c1a3f8b commit 6e95365

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SOURCEDIR = .
1010
BUILDDIR = _build
1111
VENVDIR = $(SPHINXDIR)/venv
1212
VENV = $(VENVDIR)/bin/activate
13-
SHELL = /bin/bash
13+
SHELL = /usr/bin/bash
1414

1515
.PHONY: help woke-install install run html epub serve clean clean-doc \
1616
spelling linkcheck woke Makefile
@@ -47,9 +47,9 @@ $(VENVDIR): $(SPHINXDIR)/requirements.txt
4747
"--------------------------------------------------------------- \n"
4848
@touch $(VENVDIR)
4949

50-
# woke-install:
51-
# @type woke >/dev/null 2>&1 || \
52-
# { echo "Installing \"woke\" snap... \n"; sudo snap install woke; }
50+
woke-install:
51+
@type woke >/dev/null 2>&1 || \
52+
{ echo "Installing \"woke\" snap... \n"; sudo snap install woke; }
5353

5454
install: $(VENVDIR) woke-install
5555

@@ -58,7 +58,7 @@ run: install
5858

5959
# Doesn't depend on $(BUILDDIR) to rebuild properly at every run.
6060
html: install
61-
. $(VENV); $(SPHINXBUILD) -v -b dirhtml "$(SOURCEDIR)" "$(BUILDDIR)" -w .sphinx/warnings.txt $(SPHINXOPTS)
61+
. $(VENV); $(SPHINXBUILD) -b dirhtml "$(SOURCEDIR)" "$(BUILDDIR)" -w .sphinx/warnings.txt $(SPHINXOPTS)
6262

6363
epub: install
6464
. $(VENV); $(SPHINXBUILD) -b epub "$(SOURCEDIR)" "$(BUILDDIR)" -w .sphinx/warnings.txt $(SPHINXOPTS)

0 commit comments

Comments
 (0)