7 lines
95 B
Bash
Executable file
7 lines
95 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
git submodule init
|
|
git submodule update
|
|
cd toolchain
|
|
make shell
|