e2950ec768
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
11 lines
183 B
Bash
Executable File
11 lines
183 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 $?
|