Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sync.sh - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42b52a3a3a65cf02443d77646b1b5110b56ef289 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

if [ $# == 0 ]; then
    __args=-p
fi

working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$working_tree_root/run.sh sync $__args "$@"
exit $?