Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 1 | # Copyright 2019 The Pigweed Authors |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | # use this file except in compliance with the License. You may obtain a copy of |
| 5 | # the License at |
| 6 | # |
| 7 | # https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations under |
| 13 | # the License. |
| 14 | |
| 15 | # This script must be tested on bash, zsh, and dash. |
| 16 | |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 17 | function _realpath () { |
| 18 | python -c "import os.path; print(os.path.realpath('$@'))" |
| 19 | } |
| 20 | |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 21 | # Shell: bash. |
| 22 | if test -n "$BASH"; then |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 23 | PW_SETUP_SCRIPT_PATH=$(_realpath $BASH_SOURCE) |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 24 | # Shell: zsh. |
| 25 | elif test -n "$ZSH_NAME"; then |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 26 | PW_SETUP_SCRIPT_PATH=$(_realpath ${(%):-%N}) |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 27 | # Shell: dash. |
| 28 | elif test ${0##*/} = dash; then |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 29 | PW_SETUP_SCRIPT_PATH=$(_realpath \ |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 30 | $(lsof -p $$ -Fn0 | tail -1 | sed 's#^[^/]*##;')) |
| 31 | # If everything else fails, try $0. It could work. |
| 32 | else |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 33 | PW_SETUP_SCRIPT_PATH=$(_realpath $0) |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 34 | fi |
| 35 | |
| 36 | PW_ENVSETUP=$(dirname $PW_SETUP_SCRIPT_PATH) |
| 37 | export PW_ENVSETUP |
| 38 | |
| 39 | PW_ROOT=$(dirname "$PW_ENVSETUP") |
| 40 | export PW_ROOT |
| 41 | |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 42 | unset ABORT_PW_ENVSETUP |
| 43 | |
Rob Mohr | cacb877 | 2019-11-22 13:14:01 -0800 | [diff] [blame] | 44 | . "$PW_ENVSETUP/cipd/init.sh" |
Rob Mohr | dc70d1c | 2019-12-04 10:05:28 -0800 | [diff] [blame^] | 45 | |
| 46 | if [[ -z "$ABORT_PW_ENVSETUP" ]]; then |
| 47 | . "$PW_ENVSETUP/virtualenv/init.sh" |
| 48 | fi |