Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion coilsnake/ui/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def compile_project(project_path, base_rom_filename, output_rom_filename, ccscri
"-o", output_rom_filename] + script_filenames
ccc_returncode, ccc_log = ccc(ccc_args)

if ccc_returncode == 0:
if ccc_returncode == 0 and ccc_log:
log.info("CCScript compilation succeeded with output:\n" + ccc_log)
elif ccc_returncode == 0:
log.info("Finished compiling CCScript")
else:
raise CCScriptCompilationError("CCScript compilation failed with output:\n" + ccc_log)
Expand Down
Loading