Skip to content

Commit e785fc2

Browse files
authored
save
1 parent 6ece892 commit e785fc2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.devcontainer/updateContentCommand.sh

100644100755
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
#!/usr/bin/env bash
22
set -ex
33

4+
sudo apt-get update
5+
46
(
57
cd "$(mktemp -d)"
6-
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
710
chmod +x ./kitware-archive.sh
8-
./kitware-archive.sh
11+
sudo ./kitware-archive.sh
912
rm -rf "$PWD"
1013
)
1114
sudo apt-get install -y cmake

0 commit comments

Comments
 (0)