mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
13 lines
198 B
Bash
Executable File
13 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd /tmp
|
|
git clone https://github.com/magefile/mage
|
|
cd mage
|
|
go run bootstrap.go
|
|
rm -rf /tmp/mage
|
|
|
|
if ! command -v mage &> /dev/null
|
|
then
|
|
echo "Ensure ${GOPATH}/bin is in your \$PATH"
|
|
fi
|