Skip to content

Commit

Permalink
Remove .exe in output folder name.
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuwch committed Oct 16, 2017
1 parent f5d56b0 commit ef642e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def main():
ue4.install(plugin_folder = abs_output_folder, overwrite = True)

elif descriptor_file.endswith('.uproject'):
project_name = os.path.basename(descriptor_file)
project_name = os.path.basename(descriptor_file).split('.')[0]
if not output_folder:
output_folder = 'Binaries/%s' % project_name
abs_output_folder = os.path.abspath(output_folder)
Expand Down

0 comments on commit ef642e1

Please sign in to comment.