Skip to content

Commit

Permalink
chore: adjusted repos ref
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 1, 2024
1 parent 0e83ce1 commit ddb0886
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 17 deletions.
14 changes: 0 additions & 14 deletions scripts/devref_repos.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,13 @@
"stripPrefix": "ecsact_interpret-e1c9fa55f25c84f52fb4ff3f7a7b9e2f62849d50",
"url": "https://github.com/ecsact-dev/ecsact_interpret/archive/e1c9fa55f25c84f52fb4ff3f7a7b9e2f62849d50.zip"
},
{
"name": "ecsact_rtb",
"commit": "712b233979e7650e191a629c82f4666ef85c838f",
"sha256": "2df1e9318fb04a5ddc9fb1657ed6d0627ba207677a5bdadbab1ade5e67e5e2bd",
"stripPrefix": "ecsact_rtb-712b233979e7650e191a629c82f4666ef85c838f",
"url": "https://github.com/ecsact-dev/ecsact_rtb/archive/712b233979e7650e191a629c82f4666ef85c838f.zip"
},
{
"name": "ecsact_rt_entt",
"commit": "8d90c6bfcbbafdf8d29ff269fb3ee66798c21ae7",
"sha256": "8852f220c624fb3c81e1d75125edb2e35a7cbd7049ed30606d148c52d7926900",
"stripPrefix": "ecsact_rt_entt-8d90c6bfcbbafdf8d29ff269fb3ee66798c21ae7",
"url": "https://github.com/ecsact-dev/ecsact_rt_entt/archive/8d90c6bfcbbafdf8d29ff269fb3ee66798c21ae7.zip"
},
{
"name": "ecsact_si_wasm",
"commit": "3f239173ab315a2fb87f5cea311d55c1f93d616e",
"sha256": "12071a41c55ea58a706eac6fedf2493397da1681c4241860878c982acd3b5a71",
"stripPrefix": "ecsact_si_wasm-3f239173ab315a2fb87f5cea311d55c1f93d616e",
"url": "https://github.com/ecsact-dev/ecsact_si_wasm/archive/3f239173ab315a2fb87f5cea311d55c1f93d616e.zip"
},
{
"name": "ecsact_lang_cpp",
"commit": "1733a5f0b40accdb96b481944f2833b30581b967",
Expand Down
14 changes: 11 additions & 3 deletions scripts/doxygen_devref.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,17 @@ async function generateCompileCommands(repo, task) {
existsSync(path.resolve(dir, 'WORKSPACE')) ||
existsSync(path.resolve(dir, 'WORKSPACE.bazel'))
) {
await execa('bazel', ['run', '@hedron_compile_commands//:refresh_all'], {
cwd: dir,
});
await execa(
'bazel',
[
'run',
'@hedron_compile_commands//:refresh_all',
'--experimental_convenience_symlinks=normal',
],
{
cwd: dir,
},
);
} else {
task.skip('Not a bazel repository');
}
Expand Down

0 comments on commit ddb0886

Please sign in to comment.