11 lines
239 B
Bash
11 lines
239 B
Bash
|
#!/bin/sh
|
||
|
DIRECTORY=$(cd `dirname $0` && pwd)
|
||
|
|
||
|
GIT_SITE_DIR=$DIRECTORY/osmand-git/config/site
|
||
|
LOCAL_SITE_DIR=/var/www-download
|
||
|
|
||
|
files='*.php tile_sources.xml favicon.ico'
|
||
|
for f in $files ; do
|
||
|
cp $GIT_SITE_DIR/$f $LOCAL_SITE_DIR/ -u;
|
||
|
done
|