A user reported getting an access error when trying to build because of permissions when cloning the oftest repo. This may be because the submodule was added with git@github.com. If the top level is checked out with https, the user authentication mechanism may be different.
Workaround 1: Change the reference in .gitmodules from
url = git@github.com:floodlight/oftest.git
url = https://github.com/floodlight/oftest.git
Workaround 2: Alternatively, clone by hand:
cd submodules
git clone https://github.com/floodlight/oftest.git
A user reported getting an access error when trying to build because of permissions when cloning the oftest repo. This may be because the submodule was added with git@github.com. If the top level is checked out with https, the user authentication mechanism may be different.
Workaround 1: Change the reference in .gitmodules from
url = git@github.com:floodlight/oftest.git
url = https://github.com/floodlight/oftest.git
Workaround 2: Alternatively, clone by hand:
cd submodules
git clone https://github.com/floodlight/oftest.git