9 lines
218 B
Bash
Executable file
9 lines
218 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DEST=$(grep "#define DEPLOY_DEST" config.h | awk '{print $3}' | sed -e 's/"//g')
|
|
|
|
if [ -z "$1" ]; then
|
|
rsync -avK --delete ../ ${DEST}
|
|
elif [ "$1" = "--resync" ]; then
|
|
rsync -avk --delete ${DEST} ../
|
|
fi
|