Skip to content

Commit

Permalink
make: File makedirs.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwagyeman committed Nov 25, 2024
1 parent 330850e commit cf375a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,7 @@ def make():
installer_name = "openmv-ide-linux-arm64-" + ideversion + ".tar.gz"
if args.factory: installer_name = installer_name.replace("openmv", "openmv-factory")
if not args.no_build_application:
if not os.path.exists(os.path.join(installdir, "lib/Qt/lib")):
os.mkdir(os.path.join(installdir, "lib/Qt/lib"))
os.makedirs(os.path.join(installdir, "lib/Qt/lib"), exist_ok=True)
if os.system("cd " + builddir +
" && wget http://ftp.us.debian.org/debian/pool/main/i/icu/libicu67_67.1-7_arm64.deb"
" && dpkg-deb -x libicu67_67.1-7_arm64.deb icu67"
Expand Down

0 comments on commit cf375a6

Please sign in to comment.