15 строки
363 B
Bash
Executable File
15 строки
363 B
Bash
Executable File
#!/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.
|
|
#
|
|
set -e
|
|
|
|
if [ $# == 0 ]; then
|
|
__args=-p
|
|
fi
|
|
|
|
working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
$working_tree_root/run.sh sync $__args $*
|
|
exit $? |