Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matti Schneider <[email protected]>
  • Loading branch information
verbman and MattiSG authored Apr 9, 2024
1 parent d0c1ffc commit 4db6df3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ In order to limit dependencies conflicts, we recommend using a [virtual environm
To create a virtual environment, launch a terminal on your computer, `cd` into your directory and follow these instructions:

```sh
python3 -m venv .venv # create a new venv called “.venv”
python3 -m venv .venv # create a new virtual environment in the “.venv” folder, which will contain all dependencies
source .venv/bin/activate # activate the venv
```

Expand Down
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
if ! test $JURISDICTION_NAME
then
while true; do
echo -e "${GREEN}Your jurisdiction (country?) name: \033[0m (i.e. New Zealand)"
echo -e "${GREEN}The name of the jurisdiction (country?) you will model the rules of: \033[0m (i.e. New Zealand)"
read JURISDICTION_NAME
if [[ "$JURISDICTION_NAME" != "" ]]
then
Expand All @@ -34,7 +34,7 @@ fi
if ! test $REPOSITORY_URL
then
while true; do
echo -e "${GREEN}Your git repository URL: \033[0m (i.e. https://git***.com/organisation/openfisca-jurisdiction)"
echo -e "${GREEN}Your git repository URL: \033[0m (i.e. https://githost.example/organisation/openfisca-jurisdiction)"
read REPOSITORY_URL
if [[ "$REPOSITORY_URL" != "" ]]
then
Expand Down

0 comments on commit 4db6df3

Please sign in to comment.