dependencies_dir defined twice in install.sh
JeremyCBrooks opened this issue · 2 comments
JeremyCBrooks commented
First two lines of install.sh:
dependencies_dir="dependencies"
dependencies_dir="output"
It causes the install to fail unless it is changed to:
dependencies_dir="dependencies"
output_dir="output"
attacker34 commented
003random commented
Should be fixed now. thanks for the heads up :)
Appreciate it!