Compare commits

...

3 Commits

Author SHA1 Message Date
Daylin Morgan 397b4b7c5e
build: task.mk by default 2023-10-18 09:29:00 -05:00
tripleee 200722cadd Makefile: small portability and usability fixes
* clean: don't use Bash syntax
2023-10-18 12:25:37 +03:00
Daylin Morgan 323a194ff0
fix: remove deprecated command from docs 2023-10-16 13:48:41 -05:00
4 changed files with 3 additions and 4 deletions

View File

@ -3,4 +3,4 @@ PHONIFY=1
HELP_SEP={a.b_blue}>>>{a.end}
-include .task.mk
$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk))
$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk)

View File

@ -15,7 +15,7 @@ examples/black: .FORCE
viv shim black -y -s -f -o $@
clean: ## remove build artifacts
rm -rf {build,dist}
rm -rf build dist
EXAMPLES = cli.py sys_path.py exe_specific.py frozen_import.py named_env.py scrape.py
generate-example-vivens: ##

View File

@ -15,7 +15,6 @@ CLI_DOC_PATH = DOCS_PATH / "cli.md"
cmds := dict.fromkeys(
(
"list",
"exe",
"manage",
"freeze",
"shim",

View File

@ -53,7 +53,7 @@ from typing import (
Union,
)
__version__ = "2023.1003"
__version__ = "2023.1003-dev"
class Spinner: