2019-03-25 13:25:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
cd $(dirname $0)
|
|
|
|
cd ..
|
|
|
|
tempDir=$(mktemp -d)
|
2019-04-09 18:53:29 +00:00
|
|
|
sourceDir="."
|
|
|
|
|
|
|
|
find $sourceDir \
|
|
|
|
-name "*" -and \
|
|
|
|
-not \( \
|
|
|
|
\( \
|
|
|
|
-path "Website"
|
|
|
|
\) \
|
|
|
|
-prune \
|
|
|
|
\) -and \
|
|
|
|
-not -name ".env" \
|
|
|
|
-print
|
|
|
|
|
2019-04-05 09:00:54 +00:00
|
|
|
rsync -a --delete $sourceDir $tempDir
|
2019-03-25 13:25:09 +00:00
|
|
|
rsync -a --delete $tempDir/ .
|
|
|
|
rm -rf $tempDir
|