diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index 0e9ab7c43daa..f005cf25faf2 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -236,7 +236,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator): entry = {'directory': lib.location, 'file': filePath, 'command': self.generateCommand(lib, filePath)} entries.append(entry) global_list.extend(entries) - export_file = open('database.txt','w') + export_file = open('compile_commands.json','w') json.dump(global_list, export_file) def generateCommand(self, lib, file): |