23 строки
727 B
Bash
23 строки
727 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||
|
|
||
|
source="${BASH_SOURCE[0]}"
|
||
|
|
||
|
# resolve $SOURCE until the file is no longer a symlink
|
||
|
while [[ -h $source ]]; do
|
||
|
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
|
||
|
source="$(readlink "$source")"
|
||
|
|
||
|
# if $source was a relative symlink, we need to resolve it relative to the path where
|
||
|
# the symlink file was located
|
||
|
[[ $source != /* ]] && source="$scriptroot/$source"
|
||
|
done
|
||
|
|
||
|
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
|
||
|
|
||
|
"$scriptroot/build.sh" -restore -prepareMachine -ci $@
|
||
|
if [[ $? != 0 ]]; then
|
||
|
exit 1
|
||
|
fi
|