Skip to content

Commit

Permalink
fix just docker clean just command (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 22, 2024
1 parent 2cdd805 commit 4d4f919
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed

- Fixed a bug in the changed `just docker clean` `Justfile` command where the command was prefixed with an `@` symbol. That is valid when it's a pure `just` command, but it was changed to a `bash` script.

## [2024.25]

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/django_twc_project/.just/docker.just
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-prod:
clean:
#!/usr/bin/env bash
[[ ! -f .env ]] && just project envfile
@just docker down --volumes --rmi local
just docker down --volumes --rmi local
# Run a command within the 'app' container
command *ARGS:
Expand Down

0 comments on commit 4d4f919

Please sign in to comment.