8 lines
252 B
Bash
Executable File
8 lines
252 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
URL='https://raw.githubusercontent.com'
|
|
REPO='go-gitea/gitea'
|
|
TAG="release/v$(awk -F: '/^IMAGEAPP/{sub(".[0-9]+-rootless", ""); print $2}' .env)"
|
|
|
|
$EDITOR -d -c "wincmd l" -- "$URL/$REPO/$TAG/custom/conf/app.example.ini" config/app.ini
|