123456789101112131415161718 |
- #!/bin/sh
- defaultPath=./src/hello-world
- defaultRepo=https://github.com/leachim6/hello-world.git
- src=plugins
- clonefile=mirror-repos.sh
- clonepath=${src}/${clonefile}
- username=${1:-""}
- if [ -e ${clonepath} ] ; then
- ${clonepath} ${username}
- else
- ./make/mirror-repo.sh ${defaultPath} ${defaultRepo}
- fi
|