Files
d4rks1d33 ad4c171054
Build Dev Firmware / build (push) Failing after 14m40s
A lot of changes
2026-06-02 23:32:16 -03:00

13 lines
335 B
Bash
Executable File

#!/bin/bash
# Define source and destination paths
SRC=".vscode/compile_commands.json"
DEST=".vscode/clang_compile_commands/compile_commands.json"
# Copy the file
cp "$SRC" "$DEST"
# Remove the phrase "-mword-relocations" from the copied file
sed -i '' 's/-mword-relocations//g' "$DEST"
echo "File copied and modified successfully."