Skip to content

Commit

Permalink
Fix sed command in setup_dev_env.sh for macOS
Browse files Browse the repository at this point in the history
The empty arg in the sed command is required to work on macOS (compare to: lmquang/til#18)
  • Loading branch information
jakobjjw authored and postlund committed May 11, 2022
1 parent 9c15fd7 commit 3c69600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup_dev_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $found_version -m venv .

echo "-> Activating virtual environment..."
source bin/activate
sed -i 's/false/true/' pyvenv.cfg
sed -i '' 's/false/true/' pyvenv.cfg

echo "-> Upgrading pip..."
pip install --upgrade pip
Expand Down

0 comments on commit 3c69600

Please sign in to comment.