chore: fix execute permissions and shebangs (#4695)

This commit is contained in:
Viktor Szépe 2023-10-24 09:41:51 +02:00 committed by GitHub
parent 7930506fd4
commit 742682ae51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 9 additions and 1 deletions

0
.devcontainer/__CMakeLists.txt__ Executable file → Normal file
View File

0
.devcontainer/__lv_conf.h__ Executable file → Normal file
View File

0
.devcontainer/__main.c__ Executable file → Normal file
View File

0
.devcontainer/lvgl_shell.html Executable file → Normal file
View File

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import numpy as np
import librosa
import math

0
demos/widgets/lv_demo_widgets.py Executable file → Normal file
View File

0
docs/conf.py Normal file → Executable file
View File

0
docs/misc/perfetto_ui.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

0
env_support/cmsis-pack/gen_pack.sh Normal file → Executable file
View File

0
examples/header.py Normal file → Executable file
View File

0
examples/libs/bmp/lv_example_bmp_1.py Executable file → Normal file
View File

0
examples/libs/ffmpeg/lv_example_ffmpeg_1.py Normal file → Executable file
View File

0
examples/libs/ffmpeg/lv_example_ffmpeg_2.py Normal file → Executable file
View File

0
examples/widgets/chart/lv_example_chart_4.py Normal file → Executable file
View File

0
examples/widgets/img/lv_example_img_1.py Normal file → Executable file
View File

0
examples/widgets/img/lv_example_img_2.py Normal file → Executable file
View File

0
examples/widgets/img/lv_example_img_3.py Normal file → Executable file
View File

0
examples/widgets/label/lv_example_label_1.py Normal file → Executable file
View File

0
examples/widgets/span/lv_example_span_1.py Normal file → Executable file
View File

View File

@ -1,3 +1,4 @@
#!/bin/sh
# Generate CHANGELOG_LAST.md from changes since the last version tag. (vx.y.z-dev tags are ignored)
# CHANGELOG_LAST.md can be edited manually if required and manually added to docs/CHANGELOG.md
#

View File

@ -1 +1,3 @@
#!/bin/sh
cppcheck -j8 --template="{severity}\t{file}:{line}\t{id}: {message}" --enable=all ../src/ --output-file=cppcheck_res.txt --suppress=unusedFunction --suppress=preprocessorErrorDirective --force

View File

@ -1,3 +1,4 @@
#!/bin/sh
# https://github.com/facebook/infer
#
# Install:

View File

@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# Install Linux package prerequisites needed for LVGL development
# and testing. Some less-common development packages are not included

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
##################################################################
# sjpeg converter script version 1.0
# Dependencies: (PYTHON-3)

0
scripts/release/release.py Normal file → Executable file
View File