Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 3e8bfee

Browse files
authored
fix: rename leftover dev.down references to dev.remove-containers (#1038)
Recently, as part of PR #1021, we had renamed the `dev.down` command to `dev.remove-containers` in order to try and make it a bit clearer what the command is doing behind the scenes. We still have a few commands that are trying to use the `dev.down` variant of the command. This PR updates a few remaining uses of `dev.down` to use the new syntax.
1 parent 5455dae commit 3e8bfee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,9 @@ dev.static.%: ## Rebuild static assets for the specified service's container.
495495
########################################################################################
496496

497497

498-
dev.reset: dev.down dev.reset-repos dev.prune dev.pull.large-and-slow dev.up.large-and-slow dev.static dev.migrate ## Attempt to reset the local devstack to the default branch working state without destroying data.
498+
dev.reset: dev.remove-containers dev.reset-repos dev.prune dev.pull.large-and-slow dev.up.large-and-slow dev.static dev.migrate ## Attempt to reset the local devstack to the default branch working state without destroying data.
499499

500-
dev.destroy.coursegraph: dev.down.coursegraph ## Remove all coursegraph data.
500+
dev.destroy.coursegraph: dev.remove-containers.coursegraph ## Remove all coursegraph data.
501501
docker volume rm ${COMPOSE_PROJECT_NAME}_coursegraph_data
502502

503503
dev.destroy: ## Irreversibly remove all devstack-related containers, networks, and volumes.

0 commit comments

Comments
 (0)