6 lines
131 B
Bash
Executable file
6 lines
131 B
Bash
Executable file
#!/bin/sh -e
|
|
cd "$(mktemp -d)"
|
|
git clone https://github.com/grafana/loki.git
|
|
cd loki
|
|
make logcli >&2
|
|
echo "$PWD/cmd/logcli/logcli"
|