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:
Solomon Hykes
2021-04-06 00:27:51 +00:00
parent 7fb90790f3
commit 6673ae69b3
26 changed files with 143 additions and 143 deletions

View File

@@ -2,7 +2,7 @@ package alpine
import (
"dagger.io/alpine"
"dagger.io/llb"
"dagger.io/dagger/op"
)
TestImageVersion: {
@@ -12,8 +12,8 @@ TestImageVersion: {
}
test: #up: [
llb.#Load & {from: image},
llb.#Exec & {
op.#Load & {from: image},
op.#Exec & {
args: [
"sh",
"-ec",
@@ -32,11 +32,11 @@ TestPackageInstall: {
}
test: #up: [
llb.#Load & {from: image},
llb.#Exec & {
op.#Load & {from: image},
op.#Exec & {
args: ["jq", "--version"]
},
llb.#Exec & {
op.#Exec & {
args: ["sh", "-ec", "curl --version | grep -q 7.74.0"]
},
]