16 lines
346 B
Bash
Executable file
16 lines
346 B
Bash
Executable file
#!/bin/sh
|
|
DIRECTORY=$(cd `dirname $0` && pwd)
|
|
|
|
GIT_DIR="$DIRECTORY"/osmand-git
|
|
GIT_URL=git://github.com/osmandapp/Osmand.git
|
|
GIT_ORIGIN_NAME=origin
|
|
|
|
# initialize git if it is not present (clone it)
|
|
if [ ! -d "$GIT_DIR" ]; then
|
|
git clone ${GIT_URL} "${GIT_DIR}"
|
|
fi
|
|
# update git
|
|
cd "${GIT_DIR}"
|
|
git checkout master
|
|
git pull ${GIT_ORIGIN_NAME}
|
|
|