Skip to content

Commit cd18281

Browse files
committed
Fix additional error in the lgtm.yml in relation to extraction. Removed VSC files
1 parent c95ea76 commit cd18281

File tree

2 files changed

+2
-23
lines changed

2 files changed

+2
-23
lines changed

.vscode/c_cpp_properties.json

-21
This file was deleted.

lgtm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ extraction:
1313
- curl -L https://github.com/ChibiOS/ChibiOS/archive/${CH_VER}.tar.gz | tar xz
1414
- mv ChibiOS-${CH_VER} ChibiOS
1515
- cd ChibiOS/ext
16-
- for i in *.7z; do 7z x -y $i; done
16+
- for i in *.7z; do 7z x -y "$i"; done
1717
- cd ${LGTM_SRC}/ext
18-
- for i in *.7z; do 7z x -y $i; done
18+
- for i in *.7z; do 7z x -y "$i"; done
1919
index:
2020
build_command:
2121
- export PATH=${LGTM_WORKSPACE}/gcc-arm/bin:${PATH}

0 commit comments

Comments
 (0)