File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- read " Press enter to install C++ related tools, ctrl-c to cancel" x
1
+ read -p " Press enter to install C++ related tools, ctrl-c to cancel" x
2
2
3
3
sudo apt update -y
4
4
@@ -9,7 +9,9 @@ sudo apt install -y jq g++-11 git python3 python3-pip cppcheck clang-tidy-13 cla
9
9
pip install --user conan ninja cmake
10
10
11
11
echo " Installing vscode via snap or straight from deb package if necessary"
12
- sudo snap install code --classic || wget https://code.visualstudio.com/sha/download? build=stable\& os=linux-deb-arm64 -O vscode.deb && sudo dpkg -i vscode.deb
12
+ sudo snap install code --classic || (wget https://code.visualstudio.com/sha/download? build=stable\& os=linux-deb-arm64 -O vscode.deb && sudo dpkg -i vscode.deb)
13
+
14
+ sudo apt -f install
13
15
14
16
code --install-extension ms-vscode.cpptools-extension-pack --install-extension jeff-hykin.better-cpp-syntax --install-extension eamodio.gitlens --install-extension jdinhlife.gruvbox
15
17
You can’t perform that action at this time.
0 commit comments