diff options
author | Marvin Borner | 2020-09-12 22:24:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-12 22:24:49 +0200 |
commit | 3d9a3328f4f055193c87e4c004edfbcfaec44be8 (patch) | |
tree | 548c54bb723fffbe961655f6d20b6819020353a1 /run | |
parent | 52ca9e4f610e65077cb2fab7c1ed0e802fa4ac59 (diff) |
Some casual bug fixes
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -154,7 +154,7 @@ ${data}" } make_sync() { - ctags -R --exclude=.git --exclude=build --exclude=disk --exclude=cross --exclude=ext2util . + ctags -R --exclude=.git --exclude=build --exclude=disk --exclude=cross --exclude=ext2util --exclude=boot . rm -f compile_commands.json output=$(make --always-make --dry-run) @@ -162,7 +162,7 @@ make_sync() { echo "$output" | make_append_commands libk libgui libgui echo "$output" | make_append_commands libgui kernel kernel echo "$output" | make_append_commands kernel boot boot - echo "$output" | make_append_commands kernel apps apps + echo "$output" | make_append_commands boot apps apps tr <compile_commands.json '\n' '\r' | sed -e 's/\r]\r\[/,/g' | tr '\r' '\n' >tmp mv tmp compile_commands.json } |