Error after switching to Submodules

I just changed over from using git submodules for the Kirby and Panel directories to keep them easily updated but since I switched over I have been getting an error:

Warning: include_once(/Users/Suleiman/Sites/sul2016kirby/kirby/toolkit/bootstrap.php): failed to open stream: No such file or directory in /Users/Suleiman/Sites/sul2016kirby/kirby/bootstrap.php on line 7

Warning: include_once(): Failed opening ‘/Users/Suleiman/Sites/sul2016kirby/kirby/toolkit/bootstrap.php’ for inclusion (include_path=‘.:’) in /Users/Suleiman/Sites/sul2016kirby/kirby/bootstrap.php on line 7

Fatal error: Call to undefined function load() in /Users/Suleiman/Sites/sul2016kirby/kirby/bootstrap.php on line 10

Not sure what the problem is as all the files are there :confused:

Hey there!
You need to include your submodules recursively !
The toolkit is a submodule of kirby

1 Like

Of course, what a pleb I am. Thank you! :slight_smile:

git submodule update --init --recursive

1 Like