mirror of
https://gh.wpcy.net/https://github.com/fairpm/server.git
synced 2026-06-19 02:53:45 +08:00
14 lines
304 B
Bash
14 lines
304 B
Bash
# This file should be sourced, not run
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
# These are not exported, but will be visible in the tool's script if they need them
|
|
__ORIG_PWD=$PWD
|
|
__HERE=$(dirname "$0")
|
|
|
|
function warn { echo "$@" >&2; }
|
|
function die { warn "$@"; exit 1; }
|
|
|
|
cd "$__HERE"/../..
|