mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 06:21:48 +03:00
24 lines
640 B
Bash
24 lines
640 B
Bash
|
#!/bin/bash
|
||
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
#
|
||
|
# This software may be used and distributed according to the terms of the
|
||
|
# GNU General Public License version 2.
|
||
|
|
||
|
TOOLCHAIN_DIR=/opt/rh/devtoolset-8/root/usr/bin
|
||
|
if [[ -d "$TOOLCHAIN_DIR" ]]; then
|
||
|
PATH="$TOOLCHAIN_DIR:$PATH"
|
||
|
fi
|
||
|
|
||
|
SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
|
||
|
GETDEPS_PATHS=(
|
||
|
"$SCRIPT_DIR/build/fbcode_builder/getdeps.py"
|
||
|
"$SCRIPT_DIR/../../opensource/fbcode_builder/getdeps.py"
|
||
|
)
|
||
|
for getdeps in "${GETDEPS_PATHS[@]}"; do
|
||
|
if [[ -x "$getdeps" ]]; then
|
||
|
exec "$getdeps" build eden "$@"
|
||
|
fi
|
||
|
done
|
||
|
echo "Could not find getdeps.py" >&2
|
||
|
exit 1
|