Fix build.py

This commit is contained in:
bom 2023-10-06 12:07:09 +02:00
parent db7e4a391d
commit dfc65cacc4

View file

@ -23,6 +23,7 @@ def initialize(project):
"release_secondary_build_files": [ "release_secondary_build_files": [
"project-cljs.clj", "project-cljs.clj",
], ],
"release_main_branch": "master",
} }
build = ReleaseMixin(project, input) build = ReleaseMixin(project, input)
@ -62,11 +63,12 @@ def upload_cljs(project):
@task @task
def lint(project): def lint(project):
run( # TODO: Do proper configuration
"""run(
"lein eastwood", "lein eastwood",
shell=True, shell=True,
check=True, check=True,
) )"""
run( run(
"lein ancient check", "lein ancient check",
shell=True, shell=True,