File: make-bots

package info (click to toggle)
cockpit-podman 67-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,520 kB
  • sloc: javascript: 13,262; python: 6,107; sh: 579; makefile: 146; xml: 16
file content (27 lines) | stat: -rwxr-xr-x 736 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

# Prepare bots by creating ./bots directory
# Specify $COCKPIT_BOTS_REF to checkout non-main branch

GITHUB_REPO='bots'
SUBDIR='bots'

V="${V-0}" # default to friendly messages

set -eu
cd "${0%/*}/.."
. tools/git-utils.sh

if [ ! -e bots ]; then
    [ -n "${quiet}" ] || set -x
    if [ -h ~/.config/cockpit-dev/bots ]; then
        message SYMLINK "bots → $(realpath --relative-to=. ~/.config/cockpit-dev/bots)"
        ln -sfT "$(realpath --relative-to=. ~/.config/cockpit-dev)/bots" bots
    else
        # it's small, so keep everything cached
        fetch_to_cache ${COCKPIT_BOTS_REF+"${COCKPIT_BOTS_REF}"}
        clone_from_cache "${COCKPIT_BOTS_REF-main}"
    fi
else
    echo "bots/ already exists, skipping"
fi