Skip to content

Commit 1fd1503

Browse files
authored
fix: remove the -t option in stop-local-server target since docker command does not have it (#584)
1 parent 3bbbfb1 commit 1fd1503

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ local-server:
4747
@$(CONTAINER_CMD) exec $(CONTAINER_NAME) /bin/sh -c 'for file in /testdata/*.ldif; do echo "Processing $$file..."; cat "$$file" | ldapadd -v -x -H $(LDAP_URL) -D "$(LDAP_ADMIN_DN)" -w $(LDAP_ADMIN_PASSWORD); done'
4848

4949
stop-local-server:
50-
-$(CONTAINER_CMD) rm -f -t 10 $(CONTAINER_NAME)
50+
-$(CONTAINER_CMD) rm -f $(CONTAINER_NAME)
5151

5252
test:
5353
go test -v -cover -race -count=1 .

0 commit comments

Comments
 (0)