nuth.ch/scripts/install.sh

24 lines
491 B
Bash
Raw Normal View History

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 \( \
\( \
2019-04-10 10:39:55 +00:00
-path "$sourceDir/app" \
-path "$sourceDir/public" \
-path "$sourceDir/vendor" \
-path "$sourceDir/themes" \
2019-04-09 18:53:29 +00:00
\) \
-prune \
\) -and \
2019-04-10 10:39:55 +00:00
-not -name ".env" -and \
-not -name ".htaccess" \
2019-04-09 18:53:29 +00:00
-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