Skip to content

Commit

Permalink
salt: Fix Shell UI tragets
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed Mar 18, 2021
1 parent 2855f7d commit f55efb7
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit f55efb7

Please sign in to comment.