mirror of
https://github.com/whisperity/CodeChecker-Action.git
synced 2025-12-28 10:47:21 +08:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/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
|