We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad0fba6 commit afc30ceCopy full SHA for afc30ce
1 file changed
setup.sh
@@ -1,8 +1,12 @@
1
#!/bin/bash
2
3
-py_pkgs=(click cmsis_pack_manager pyelftools)
+py_pkgs=(click cmsis_pack_manager pyelftools intervaltree dataclasses)
4
5
-for var in "$py_pkgs"
+for name in ${py_pkgs[*]}
6
do
7
- python3 -m pip --no-cache-dir install $var -t ./ -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
+ python3 -m pip --no-cache-dir install $name -t ./ -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
8
done
9
+
10
+python3 ./__main__.py --help
11
12
+exit $?
0 commit comments