11 lines
309 B
Bash
Executable File
11 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
# This script will download and establish gitea-mcp as a binary for use by mcpo in this container
|
|
|
|
wget https://gitea.com/gitea/gitea-mcp/releases/download/v0.3.0/gitea-mcp_Linux_x86_64.tar.gz
|
|
|
|
tar -xvf gitea-mcp_Linux_x86_64.tar.gz
|
|
|
|
cp gitea-mcp /usr/local/bin
|
|
|
|
rm -rf gitea-mcp* README* LICENSE
|