repo-cloner/src/config

15 lines
320 B
Bash

#!/bin/bash
# Default values
defaultMirrorPath=$HOME/.git-mirror
defaultCachePath=$HOME/.git-mirror-cache
# Config ones - replaced with environment vars
cfgMirrorPath=${CCLONE_PATH:-$defaultMirrorPath}
cfgCachePath=${CCLONE_CACHE:-$defaultCachePath}
# modify PATH
bindir=$(dirname $(realpath $0))
PATH=$bindir:$PATH