stdlib: rename dagger.io/llb to dagger.io/dagger/op
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package testing
|
||||
|
||||
import (
|
||||
"dagger.io/llb"
|
||||
"dagger.io/dagger/op"
|
||||
"dagger.io/dagger"
|
||||
)
|
||||
|
||||
@@ -12,12 +12,12 @@ bar: {
|
||||
string
|
||||
|
||||
#up: [
|
||||
llb.#FetchContainer & {ref: "busybox"},
|
||||
llb.#Exec & {
|
||||
op.#FetchContainer & {ref: "busybox"},
|
||||
op.#Exec & {
|
||||
args: ["cp", "/source/testfile", "/out"]
|
||||
mount: "/source": from: source
|
||||
},
|
||||
llb.#Export & {
|
||||
op.#Export & {
|
||||
format: "string"
|
||||
source: "/out"
|
||||
},
|
||||
|
@@ -1,11 +1,11 @@
|
||||
package testing
|
||||
|
||||
import "dagger.io/llb"
|
||||
import "dagger.io/dagger/op"
|
||||
|
||||
foo: "value"
|
||||
bar: "another value"
|
||||
|
||||
#up: [
|
||||
llb.#FetchContainer & {ref: "busybox"},
|
||||
llb.#Exec & {args: ["true"]},
|
||||
op.#FetchContainer & {ref: "busybox"},
|
||||
op.#Exec & {args: ["true"]},
|
||||
]
|
||||
|
Reference in New Issue
Block a user