Skip to content

Commit

Permalink
equal sign typo (#1388)
Browse files Browse the repository at this point in the history
Recently I re-ran the setup script on DEV and ran into the parsedatetime error. I narrowed it down to what I think is a typo, there is a `===` when I believe `==` is what was meant. I modified this file locally and ran with no issues.
  • Loading branch information
diabeticpilot authored Nov 22, 2020
1 parent 37a50e4 commit 5635387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/oref0-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ if prompt_yn "" N; then
rm -rf $directory/.git
echo Removed any existing git
echo "Uninstalling parsedatetime, reinstalling correct version"
pip uninstall -y parsedatetime && pip install -I parsedatetime===2.5
pip uninstall -y parsedatetime && pip install -I parsedatetime==2.5
# TODO: delete this after openaps 0.2.2 release
echo Checking openaps 0.2.2 installation with --nogit support
if ! openaps --version 2>&1 | egrep "0.[2-9].[2-9]"; then
Expand Down

0 comments on commit 5635387

Please sign in to comment.