Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

salt: Use csc framework for UI configuration #3181

Merged
Prev Previous commit
Next Next commit
salt: Fix Shell UI tragets
  • Loading branch information
JBWatenbergScality committed Mar 19, 2021
commit bc98afc990262ea04f77b857d93375c3f0c86624
7 changes: 6 additions & 1 deletion buildchain/buildchain/shell_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from buildchain import types
from buildchain import utils
from buildchain import ui
from buildchain import versions


def task_shell_ui() -> types.TaskDict:
Expand Down Expand Up @@ -54,7 +55,11 @@ def clean() -> None:
"_shell_ui_mkdir_build_root",
],
"file_dep": list(utils.git_ls("shell-ui")),
"targets": [constants.SHELL_UI_BUILD_ROOT / "index.html"],
"targets": [
constants.SHELL_UI_BUILD_ROOT.joinpath(
f"solution-ui-navbar.{versions.SHELL_UI_VERSION}.js"
),
],
"clean": [clean],
}

Expand Down