Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed all git urls from git:// to https:// #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup/mininet-setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

git clone git://github.com/mininet/mininet
git clone https://github.com/mininet/mininet
mininet/util/install.sh -fn03
2 changes: 1 addition & 1 deletion setup/p4-setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

cd ~
git clone git://github.com/p4lang/p4factory.git
git clone https://github.com/p4lang/p4factory.git

cd ~/p4factory/
./install.sh
Expand Down
2 changes: 1 addition & 1 deletion setup/pyretic-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rm -rf git

# Pyretic installation
cd ~
git clone git://github.com/frenetic-lang/pyretic.git
git clone https://github.com/frenetic-lang/pyretic.git

export PATH=$PATH:$HOME/pyretic:$HOME/pox
export PYTHONPATH=$HOME/pyretic:$HOME/mininet:$HOME/pox
Expand Down
2 changes: 1 addition & 1 deletion setup/ryu-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sudo pip install eventlet

# Ryu install
pushd ~
git clone git://github.com/osrg/ryu.git
git clone https://github.com/osrg/ryu.git
sudo cp /vagrant/setup/ryu-flags.py ~/ryu/ryu/flags.py
pushd ryu
sudo python ./setup.py install