2022-01-18 00:34:38 +08:00
|
|
|
export RELEASE_MODE=interactive
|
2022-02-15 19:44:59 +08:00
|
|
|
|
|
|
|
cookie_path="${RELEASE_ROOT}/releases/COOKIE"
|
|
|
|
if [ ! -f $cookie_path ]; then
|
|
|
|
cat /dev/urandom | env LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 > $cookie_path
|
|
|
|
fi
|