Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed Apr 4, 2023
1 parent a13f2ae commit 48920ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions multidim-interop/rust/v0.49/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ image.json:
docker image inspect ${imageName} -f "{{.Id}}" | \
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
else
image.json: main.nim nim-libp2p Dockerfile
docker build -t ${imageName} .
image.json: rust-libp2p-${commitSha}
cd rust-libp2p-${commitSha} && docker build -f interop-tests/Dockerfile -t ${imageName} .
docker image inspect ${imageName} -f "{{.Id}}" | \
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
# If we're in CI, save the cache
Expand Down
2 changes: 1 addition & 1 deletion multidim-interop/rust/v0.50/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image.json:
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
else
image.json: rust-libp2p-${commitSha}
cd rust-libp2p-${commitSha} && docker build -t ${imageName} -f interop-tests/Dockerfile .
cd rust-libp2p-${commitSha} && docker build -f interop-tests/Dockerfile -t ${imageName} .
docker image inspect ${imageName} -f "{{.Id}}" | \
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
# If we're in CI, save the cache
Expand Down
2 changes: 1 addition & 1 deletion multidim-interop/rust/v0.51/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image.json:
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
else
image.json: rust-libp2p-${commitSha}
cd rust-libp2p-${commitSha} && docker build -t ${imageName} -f interop-tests/Dockerfile .
cd rust-libp2p-${commitSha} && docker build -f interop-tests/Dockerfile -t ${imageName} .
docker image inspect ${imageName} -f "{{.Id}}" | \
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
# If we're in CI, save the cache
Expand Down

0 comments on commit 48920ed

Please sign in to comment.