Skip to content

Commit

Permalink
docker-compose => docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Aug 9, 2024
1 parent 4e753f4 commit 5c973db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Start up Postgres
env:
PG_MAJOR: ${{ matrix.postgres-version }}
run: docker-compose up -d
run: docker compose up -d

- name: Run tests
env:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
extraFiles: bleep.yaml

- name: Start up Postgres
run: docker-compose up -d
run: docker compose up -d

- name: Build docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion typo-dsl-shared/typo/dsl/RenderCtx.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object RenderCtx {

val nameForPathsMap: Map[List[Path], String] =
findPathsAndTableNames(s)
.groupMap { case (_, name) => name} { case (path, _) => path }
.groupMap { case (_, name) => name } { case (path, _) => path }
.flatMap { case (sameName, paths) =>
paths.sorted.zipWithIndex.map { case (path, idx) => path -> s"$sameName$idx" }
}
Expand Down

0 comments on commit 5c973db

Please sign in to comment.