mirror of
https://github.com/whisperity/CodeChecker-Action.git
synced 2025-12-29 03:07:23 +08:00
9 lines
182 B
Bash
9 lines
182 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -ex
|
||
|
|
|
||
|
|
for CCDB in $(find . -name "compile_commands.json"); do
|
||
|
|
pushd $(dirname "$CCDB")
|
||
|
|
sed -i "s,__DIRECTORY__,$(pwd),g" "compile_commands.json"
|
||
|
|
popd
|
||
|
|
done
|