We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ece892 commit e785fc2Copy full SHA for e785fc2
.devcontainer/updateContentCommand.sh
100644
100755
@@ -1,11 +1,14 @@
1
#!/usr/bin/env bash
2
set -ex
3
4
+sudo apt-get update
5
+
6
(
7
cd "$(mktemp -d)"
- wget https://apt.kitware.com/kitware-archive.sh
8
+ # wget doesn't work for some reason. 🤷♀️
9
+ curl -LO https://apt.kitware.com/kitware-archive.sh
10
chmod +x ./kitware-archive.sh
- ./kitware-archive.sh
11
+ sudo ./kitware-archive.sh
12
rm -rf "$PWD"
13
)
14
sudo apt-get install -y cmake
0 commit comments