We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make cli
1 parent 33c37f4 commit a8ba14bCopy full SHA for a8ba14b
Makefile
@@ -32,6 +32,7 @@ upload: dist
32
test-upload: dist
33
$(PY) -m twine upload --repository testpypi $</*
34
35
-.PHONY: update-template
36
-update-template:
37
- $(PY) -m cruft update
+# Usage: make cli args=--help
+.PHONY: cli
+cli:
38
+ $(PY) ./utils/cli.py --config ./utils/conf.py $(args)
src/utils/cli.py renamed to utils/cli.py
@@ -4,7 +4,7 @@
4
5
import os
6
import sys
7
-sys.path.insert(0, os.path.abspath('sphinxnotes'))
+sys.path.insert(0, os.path.abspath('src/sphinxnotes'))
8
import snippet.cli
9
10
snippet.cli.main()
src/utils/conf.py renamed to utils/conf.py
0 commit comments