I’m trying to install a custom xblock from a private repository and am running into issues. I assumed it was something wrong with my repo/xblock so I thought I would try it with an xblock that I know is working. I decided to try installing the polling xblock from Opencraft as if it was a private repo to see what I did wrong.
Here are the steps I took:
-
From within the ~/.local/share/tutor/env/build/openedx/requirements folder, I ran:
git clone git@github.com:open-craft/xblock-poll.git
-
I then ran:
echo "-e ./xblock-poll/" >> private.txt
-
Running
tutor images build openedx
resulted in the following error:
Step 23/38 : RUN pip install -r /openedx/requirements/private.txt
—> Running in 1e67c2ca96c7
./xblock-poll/ should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+
The script then stopped.
Can someone point out what I’m doing wrong?
Thanks!