Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit678e524

Browse files
authored
Update print statements for compiled binary path so copying and running always works without navigating
1 parenteffa900 commit678e524

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎builder/unix.py‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,9 +453,10 @@ def compile(*args): # NOQA
453453
dst=f'build/lvgl_micropy_{REAL_PORT}'
454454
shutil.copyfile(src,dst)
455455

456-
print(f'compiled binary is{os.path.abspath(os.path.split(dst)[0])}')
456+
buildpath=f"{os.path.abspath(os.path.split(dst)[0])}/lvgl_micropy_{REAL_PORT}"
457+
print(f'compiled binary is{buildpath}')
457458
print('You need to make the binary executable by running')
458-
print(f'"sudo chmod +xlvgl_micropy_{REAL_PORT}"')
459+
print(f'"sudo chmod +x{buildpath}"')
459460

460461

461462
defmpy_cross():

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp