Skip to content

Commit

Permalink
twoliter: fetch instead of fetch-sdk for builds
Browse files Browse the repository at this point in the history
We accidentally removed "fetch" from the Makefile.toml dependency graph
when building a variant. This change restores it.
  • Loading branch information
webern committed May 16, 2024
1 parent 7f86780 commit 5531471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twoliter/embedded/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ cargo metadata \

# Builds a package including its build-time and runtime dependency packages.
[tasks.build-package]
dependencies = ["check-cargo-version", "fetch-sdk", "publish-setup", "fetch-licenses", "cargo-metadata"]
dependencies = ["check-cargo-version", "fetch", "publish-setup", "fetch-licenses", "cargo-metadata"]
script_runner = "bash"
script = [
'''
Expand Down Expand Up @@ -785,7 +785,7 @@ cargo build \
]

[tasks.build-variant]
dependencies = ["fetch-sdk", "build-sbkeys", "publish-setup", "cargo-metadata"]
dependencies = ["fetch", "build-sbkeys", "publish-setup", "cargo-metadata"]
script = [
'''
export PATH="${TWOLITER_TOOLS_DIR}:${PATH}"
Expand Down

0 comments on commit 5531471

Please sign in to comment.