The `start-from.sh` copies the folder `my-site` itself and the content of it. As a result, you have `./my-site/my-site/my_site/...`. The problem is in the following line: ``` bash cp -R "$invenio_training_folder/$exercise_tutorial_folder/solution/my-site/" "$invenio_instance_folder" ``` A possible solution is to change line with: ``` bash cp -R "$invenio_training_folder/$exercise_tutorial_folder/solution/my-site/" "$invenio_src_folder" ```
The
start-from.shcopies the foldermy-siteitself and the content of it. As a result, you have./my-site/my-site/my_site/....The problem is in the following line:
A possible solution is to change line with: