6bdd276d05
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
11 lines
181 B
Bash
Executable File
11 lines
181 B
Bash
Executable File
#!/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 $?
|