Skip to content

Commit

Permalink
Fix docker-compose -> docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca committed Sep 27, 2024
1 parent 12d8cba commit 49bdd6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

- name: Tests
run: make ci
run: make ci BIN_DOCKER_COMPOSE="docker compose"

- uses: codecov/codecov-action@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

compose = docker-compose -p permacoop
BIN_DOCKER_COMPOSE=docker-compose

compose = ${BIN_DOCKER_COMPOSE} -p permacoop

run_server = ./tools/colorize_prefix.sh [server] 31
run_watch = ./tools/colorize_prefix.sh [watch] 36
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class ListLeaveRequestsController {
overviewTable,
pagination,
currentPage: dto.page,
calendarToken,
calendarToken
};
}
}

0 comments on commit 49bdd6e

Please sign in to comment.