mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 13:25:42 +00:00
20 lines
294 B
Bash
Executable File
20 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! command -v mage &> /dev/null
|
|
then
|
|
pushd /tmp
|
|
git clone https://github.com/magefile/mage
|
|
cd mage
|
|
go run bootstrap.go
|
|
rm -rf /tmp/mage
|
|
popd
|
|
fi
|
|
|
|
if ! command -v mage &> /dev/null
|
|
then
|
|
echo "Ensure `go env GOPATH`/bin is in your \$PATH"
|
|
exit 1
|
|
fi
|
|
|
|
go mod download
|