Skip to content

Commit a46ca79

Browse files
authored
Merge pull request #104 from ahelwer/devcontainer-tlauc
Install TLAUC in gitpod & codespaces
2 parents ab9049a + cd7850f commit a46ca79

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.devcontainer/install.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ echo 'export PATH=$PATH:/workspace/Examples/tools/tlaps/bin:/workspaces/Examples
4040
## Install Apalache
4141
wget -qN https://github.com/informalsystems/apalache/releases/latest/download/apalache.tgz -P /tmp
4242
mkdir -p tools/
43-
tar xvfz /tmp/apalache.tgz --directory tools/
43+
tar -xvfz /tmp/apalache.tgz --directory tools/
4444
echo 'export PATH=$PATH:/workspace/Examples/tools/apalache/bin:/workspaces/Examples/tools/apalache/bin' >> $HOME/.bashrc
45-
tools/apalache/bin/apalache-mc config --enable-stats=true
45+
tools/apalache/bin/apalache-mc config --enable-stats=true
46+
47+
## Install TLAUC
48+
wget -qN https://github.com/tlaplus-community/tlauc/releases/latest/download/tlauc-linux.tar.gz -P /tmp
49+
mkdir -p tools/tlauc
50+
tar -xvfz /tmp/tlauc-linux.tar.gz --directory tools/tlauc/
51+
echo 'export PATH=$PATH:/workspace/Examples/tools/tlauc:/workspaces/Examples/tools/tlauc' >> $HOME/.bashrc
52+

0 commit comments

Comments
 (0)