File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 51
51
-type d -name '.licenses' -prune -o \
52
52
-type d -name '__pycache__' -prune -o \
53
53
-type d -name 'node_modules' -prune -o \
54
+ -type d -path "./deps/*" -prune -o \
54
55
-regex ".*[.]md" -print
55
56
); do
56
57
markdown-link-check \
78
79
- task : npm:install-deps
79
80
cmds :
80
81
- npx markdownlint-cli "**/*.md"
81
-
82
+
82
83
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
83
84
npm:install-deps :
84
85
desc : Install dependencies managed by npm
@@ -111,9 +112,7 @@ tasks:
111
112
-type d -name 'node_modules' -prune -or \
112
113
-type d -path './deps/*' -prune -or \
113
114
\( \
114
- -regextype posix-extended \
115
- -regex '.*[.](bash|sh)' -and \
116
- -type f \
115
+ -name '*.bash' -or -name '*.sh' -and -type f \
117
116
\) \
118
117
-print
119
118
)
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ export PREFIX=/opt/lib/${CROSS_COMPILE}
7
7
8
8
if [ " $CROSS_COMPILER " == " " ]; then
9
9
CROSS_COMPILER=${CROSS_COMPILE} -gcc
10
- CROSS_COMPILER_CXX=${CROSS_COMPILE} -g++
10
+ # CROSS_COMPILER_CXX=${CROSS_COMPILE}-g++
11
11
# AR=${CROSS_COMPILE}-ar
12
12
else
13
13
export CC=$CROSS_COMPILER
14
14
export CXX=$CROSS_COMPILER ++
15
15
CROSS_COMPILER=$CC
16
- CROSS_COMPILER_CXX=$CXX
16
+ # CROSS_COMPILER_CXX=$CXX
17
17
fi
18
18
cd /opt/lib/libusb-1.0.28
19
19
LIBUSB_DIR=$( pwd)
You can’t perform that action at this time.
0 commit comments