From 76723080abfb69542a5b1a740a03795192d9ec80 Mon Sep 17 00:00:00 2001 From: Bilel Omrani Date: Mon, 21 Sep 2020 19:13:00 +0200 Subject: [PATCH] fix: Match README commands with WORKDIR --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 46f450f..c17cfac 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ We publish only major versions starting with `v2`. ## As Script ```bash -docker run --rm -v $(pwd):/usr/src/project commitizen/commitizen:latest /bin/sh -c 'cz bump --changelog' +docker run --rm -v $(pwd):/app commitizen/commitizen:latest /bin/sh -c 'cz bump --changelog' ``` ## Inside container @@ -29,7 +29,7 @@ Open a terminal inside docker with `cz` available and with the current directory This way we can run any `cz` command. ```bash -docker run --rm -it -v $(pwd):/usr/src/project commitizen/commitizen:latest +docker run --rm -it -v $(pwd):/app commitizen/commitizen:latest ``` ## Contributing