Skip to content

Commit 10a4cde

Browse files
author
Tibor Vass
committed
Fix make shell
The "shell" rule in the Makefile uses docker to run a bash session, however it was depending on the "all" rule which assumes non-docker local development. This commit fixes it by making it depend on the "runcimage" rule. Signed-off-by: Tibor Vass <[email protected]>
1 parent 4bb1fe4 commit 10a4cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ rootlessintegration: runcimage
8282
localrootlessintegration: all
8383
tests/rootless.sh
8484

85-
shell: all
85+
shell: runcimage
8686
docker run -e TESTFLAGS -ti --privileged --rm -v $(CURDIR):/go/src/$(PROJECT) $(RUNC_IMAGE) bash
8787

8888
install:

0 commit comments

Comments
 (0)