10 lines
386 B
Bash
Executable file
10 lines
386 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#install dep.
|
|
pip3 install -r requirements.txt
|
|
|
|
#here we assume an env. variable describing venv location: $VIRTUAL_ENV (set by pyenv)
|
|
#here we assume version 3.8 -> if it is not so, please update.
|
|
#here we are expecting to patch pelican 4.2.0, if not so, check out manually!
|
|
patch $VIRTUAL_ENV/lib/python3.8/site-packages/pelican/readers.py -i patch/pelican_readers.patch
|