taviso / cefdebug

Minimal code to connect to a CEF debugger.
Apache License 2.0
197 stars 19 forks source link

"git submodule update --init --recursive" gives error #1

Closed hannob closed 5 years ago

hannob commented 5 years ago

If I run

git submodule update --init --recursive

as described in the docs I get an error:


Submodule 'libwebsockets' (https://github.com/warmcat/libwebsockets.git) registered for path 'libwebsockets'
Submodule 'wineditline' (https://github.com/winlibs/wineditline.git) registered for path 'wineditline'
Cloning into '/tmp/cefdebug/libwebsockets'...
Cloning into '/tmp/cefdebug/wineditline'...
error: Server does not allow request for unadvertised object 20716ad48335bb72e2e7a443a133882241163036
Fetched in submodule path 'libwebsockets', but it did not contain 20716ad48335bb72e2e7a443a133882241163036. Direct fetching of that commit failed.
taviso commented 5 years ago

Hmm, oops, looks like I messed that up somehow. Thanks for filing the issue.

You can do this to workaround it while I fix it:

git submodule update --force --recursive --init --remote

(If you're building on Linux you don't need those modules anyway, they're just for Windows!)

taviso commented 5 years ago

OK, I think I got it with fbaf837bca4b9f513118dfcc6d7b38cf92f84fae.

Thanks Hanno!