Skip to content

Commit

Permalink
fix(builder): packages with interfere failing to build
Browse files Browse the repository at this point in the history
We had a few packages failing during the interfere phase. Turns out we source another directory than we check in the step before.
  • Loading branch information
dr460nf1r3 committed Jun 25, 2024
1 parent 783220d commit 30265cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ci-template"]
path = ci-template
url = https://github.com/chaotic-cx/chaotic-repository-template
2 changes: 1 addition & 1 deletion builder-container/interfere.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function interference-apply() {

# shellcheck source=/dev/null
if [[ -f "${BUILDDIR}/.CI/prepare" ]]; then
source "${BUILDDIR}/prepare"
source "${BUILDDIR}/.CI/prepare"
fi

if [[ -f "${BUILDDIR}/.CI/interfere.patch" ]]; then
Expand Down
1 change: 1 addition & 0 deletions ci-template
Submodule ci-template added at 886132

0 comments on commit 30265cb

Please sign in to comment.