Fix build.py
This commit is contained in:
parent
db7e4a391d
commit
dfc65cacc4
1 changed files with 4 additions and 2 deletions
6
build.py
6
build.py
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue