mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
6 lines
180 B
Bash
6 lines
180 B
Bash
#!/bin/bash
|
|
|
|
curl -OL https://golang.org/dl/go1.22.4.linux-amd64.tar.gz \
|
|
&& tar -C /usr/local -xvf go1.22.4.linux-amd64.tar.gz \
|
|
&& ln -s /usr/local/go/bin/go /usr/local/bin/go
|