Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit a2f00d4

Browse files
committed
chore: bump to cue-sdk
1 parent ef40a23 commit a2f00d4

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.gitmodules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "dagger"]
22
path = dagger
33
url = https://github.com/dagger/dagger
4+
branch = cue-sdk

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ reset:
44
dep: reset
55
git submodule update --init
66
git submodule update --force --remote
7+
git submodule foreach -q --recursive 'branch="$$(git config -f $$toplevel/.gitmodules submodule.$$name.branch)"; git switch $$branch'
78

89
apply-patch.%:
9-
cd ./dagger && (curl https://github.com/dagger/dagger/compare/main...morlay:$*.patch | git apply -v)
10+
cd ./dagger && (curl https://github.com/dagger/dagger/compare/cue-sdk...morlay:$*.patch | git apply -v)
1011

1112
patch: dep
12-
$(MAKE) apply-patch.enhance-copy-info
13-
$(MAKE) apply-patch.handle-cue-panic
14-
$(MAKE) apply-patch.list-all-nested-action
15-
$(MAKE) apply-patch.buildkit-auto-switch
16-
$(MAKE) apply-patch.multi-arch
17-
$(MAKE) apply-patch.cuemod
13+
$(MAKE) apply-patch.cue-sdk-copy-info
14+
$(MAKE) apply-patch.cue-sdk-handle-cue-panic
15+
$(MAKE) apply-patch.cue-sdk-list-all-nested-action
16+
$(MAKE) apply-patch.cue-sdk-buildkit-auto-switch
17+
$(MAKE) apply-patch.cue-sdk-multi-arch
18+
$(MAKE) apply-patch.cue-sdk-cuemod
1819
cd dagger && go mod tidy
1920

2021
install: patch

dagger

Submodule dagger updated 543 files

dagger.cue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ actions: go: golang.#Project & {
7676
steps: [
7777
debian.#InstallPackage & {
7878
packages: {
79-
"git": _
79+
"git": _
80+
"wget": _
81+
"curl": _
8082
}
8183
},
8284
imagetool.#Shell & {

0 commit comments

Comments
 (0)