Skip to content

Commit 5a935fe

Browse files
authored
Fix remove command for docker volumes (#1015)
* Makefile (docker-clean): Fix remove command for docker volumes.
1 parent ac03a74 commit 5a935fe

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2026-07-16 Mats Lidell <matsl@gnu.org>
2+
3+
* Makefile (docker-clean): Fix remove command for docker volumes.
4+
15
2026-07-16 Bob Weiner <rsw@gnu.org>
26

37
* hsys-www.el (link-to-url): Explicitly duplicate `www-url' defact, for now.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Bob Weiner
44
#
55
# Orig-Date: 15-Jun-94 at 03:42:38
6-
# Last-Mod: 15-Jul-26 at 21:34:14 by Bob Weiner
6+
# Last-Mod: 16-Jul-26 at 23:26:56 by Mats Lidell
77
#
88
# Copyright (C) 1994-2026 Free Software Foundation, Inc.
99
# See the file HY-COPY for license information.
@@ -707,7 +707,7 @@ run-bash:
707707

708708
.PHONY: docker-clean
709709
docker-clean:
710-
docker rm elpa-local
710+
docker volume rm elpa-local || true
711711

712712
# Run with coverage. Run tests given by testspec and monitor the
713713
# coverage for the specified file.

0 commit comments

Comments
 (0)