Skip to content

Commit

Permalink
Fix rename issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kwagyeman committed Sep 9, 2023
1 parent 8b7688a commit 9bfbe8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def make():

if args.rpi:
installer_name = "openmv-ide-linux-arm64-" + ideversion + ".tar.gz"
if args.factory: installer_name.replace("openmv", "openmv-factory")
if args.factory: installer_name = installer_name.replace("openmv", "openmv-factory")
if not args.no_build_application:
if os.system("cd " + builddir +
" && cmake ../qt-creator -Wno-dev" +
Expand Down Expand Up @@ -395,7 +395,7 @@ def make():

elif sys.platform.startswith('win'):
installer_name = "openmv-ide-windows-" + ideversion
if args.factory: installer_name.replace("openmv", "openmv-factory")
if args.factory: installer_name = installer_name.replace("openmv", "openmv-factory")
installer_archive_name = installer_name + "-installer-archive.7z"
if not args.no_build_application:
if os.system("cd " + builddir +
Expand Down Expand Up @@ -431,7 +431,7 @@ def make():

elif sys.platform.startswith('darwin'):
installer_name = "openmv-ide-mac-" + ideversion + ".dmg"
if args.factory: installer_name.replace("openmv", "openmv-factory")
if args.factory: installer_name = installer_name.replace("openmv", "openmv-factory")
if not args.no_build_application:
if os.system("cd " + builddir +
" && cmake ../qt-creator" +
Expand Down Expand Up @@ -462,7 +462,7 @@ def make():

elif sys.platform.startswith('linux'):
installer_name = "openmv-ide-linux-x86_64-" + ideversion
if args.factory: installer_name.replace("openmv", "openmv-factory")
if args.factory: installer_name = installer_name.replace("openmv", "openmv-factory")
installer_archive_name = installer_name + "-installer-archive.7z"
if not args.no_build_application:
if os.system("cd " + builddir +
Expand Down

0 comments on commit 9bfbe8c

Please sign in to comment.