Skip to content

Commit

Permalink
replace git:// with https://
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxy7 committed Jun 12, 2021
1 parent 3523ae0 commit 531e104
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ API_SECRET="..." NIGHTSCOUT_HOST=localhost:1337 ns-upload-entries <input> <outpu
### Get the source

```
git clone git://github.com/openaps/oref0.git
git clone https://github.com/openaps/oref0.git
cd oref0
git checkout dev
git checkout -b wip/my-enhancement-fix-or-proposal
Expand Down
2 changes: 1 addition & 1 deletion bin/openaps-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ sed -i "s/daily/hourly/g" /etc/logrotate.conf
sed -i "s/#compress/compress/g" /etc/logrotate.conf

curl -s https://raw.githubusercontent.com/openaps/oref0/$BRANCH/bin/openaps-packages.sh | bash -
mkdir -p ~/src; cd ~/src && ls -d oref0 && (cd oref0 && git checkout $BRANCH && git pull) || git clone git://github.com/openaps/oref0.git
mkdir -p ~/src; cd ~/src && ls -d oref0 && (cd oref0 && git checkout $BRANCH && git pull) || git clone https://github.com/openaps/oref0.git
echo "Press Enter to run oref0-setup with the current release ($BRANCH branch) of oref0,"
read -p "or press ctrl-c to cancel. " -r
cd && ~/src/oref0/bin/oref0-setup.sh
10 changes: 5 additions & 5 deletions bin/openaps-src.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,27 @@ sudo easy_install -ZU setuptools && \
mkdir ~/src
cd ~/src && \
(
git clone -b dev git://github.com/openaps/decocare.git || \
git clone -b dev https://github.com/openaps/decocare.git || \
(cd decocare && git pull)
(cd decocare && \
sudo python setup.py develop
)
git clone git://github.com/openaps/dexcom_reader.git || \
git clone https://github.com/openaps/dexcom_reader.git || \
(cd dexcom_reader && git pull)
(cd dexcom_reader && \
sudo python setup.py develop
)
git clone -b dev git://github.com/openaps/openaps.git || \
git clone -b dev https://github.com/openaps/openaps.git || \
(cd openaps && git pull)
(cd openaps && \
sudo python setup.py develop
)
git clone git://github.com/openaps/openaps-contrib.git || \
git clone https://github.com/openaps/openaps-contrib.git || \
(cd openaps-contrib && git pull)
(cd openaps-contrib && \
sudo python setup.py develop
)
git clone -b dev git://github.com/openaps/oref0.git || \
git clone -b dev https://github.com/openaps/oref0.git || \
(cd oref0 && git pull)
)
test -d oref0 && \
Expand Down
10 changes: 5 additions & 5 deletions bin/oref0-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ if prompt_yn "" N; then
(cd $HOME/src/oref0 && git fetch && git pull) || die "Couldn't pull latest oref0"
else
echo -n "Cloning oref0: "
(cd $HOME/src && git clone git://github.com/openaps/oref0.git) || die "Couldn't clone oref0"
(cd $HOME/src && git clone https://github.com/openaps/oref0.git) || die "Couldn't clone oref0"
fi

# Make sure jq version >1.5 is installed
Expand Down Expand Up @@ -1031,7 +1031,7 @@ if prompt_yn "" N; then
echo "EdisonVoltage already installed"
else
echo "Installing EdisonVoltage"
cd $HOME/src && git clone -b master git://github.com/cjo20/EdisonVoltage.git || (cd EdisonVoltage && git checkout master && git pull)
cd $HOME/src && git clone -b master https://github.com/cjo20/EdisonVoltage.git || (cd EdisonVoltage && git checkout master && git pull)
cd $HOME/src/EdisonVoltage
make voltage
fi
Expand All @@ -1046,7 +1046,7 @@ if prompt_yn "" N; then
echo Checking for BT Pebble Mac
if [[ ! -z "$BT_PEB" ]]; then
sudo pip install --default-timeout=1000 libpebble2
sudo pip install --default-timeout=1000 --user git+git://github.com/mddub/pancreabble.git
sudo pip install --default-timeout=1000 --user git+https://github.com/mddub/pancreabble.git
oref0-bluetoothup
sudo rfcomm bind hci0 $BT_PEB
do_openaps_import $HOME/src/oref0/lib/oref0-setup/pancreabble.json
Expand Down Expand Up @@ -1131,7 +1131,7 @@ if prompt_yn "" N; then
echo "i2c-dev" > /etc/modules-load.d/i2c.conf
echo "Installing pi-buttons..."
systemctl stop pi-buttons
cd $HOME/src && git clone git://github.com/bnielsen1965/pi-buttons.git
cd $HOME/src && git clone https://github.com/bnielsen1965/pi-buttons.git
echo "Make and install pi-buttons..."
cd pi-buttons
cd src && make && sudo make install && sudo make install_service
Expand All @@ -1142,7 +1142,7 @@ if prompt_yn "" N; then
systemctl enable pi-buttons && systemctl restart pi-buttons
echo "Installing openaps-menu..."
test "$directory" != "/$HOME/myopenaps" && (echo You are using a non-standard openaps directory. For the statusmenu to work correctly you need to set the openapsDir variable in index.js)
cd $HOME/src && git clone git://github.com/openaps/openaps-menu.git || (cd openaps-menu && git checkout master && git pull)
cd $HOME/src && git clone https://github.com/openaps/openaps-menu.git || (cd openaps-menu && git checkout master && git pull)
cd $HOME/src/openaps-menu && sudo npm install
cp $HOME/src/openaps-menu/openaps-menu.service /etc/systemd/system/ && systemctl enable openaps-menu
fi
Expand Down

0 comments on commit 531e104

Please sign in to comment.