Apply shopt options to include hidden files
This commit is contained in:
parent
aaa922c0fd
commit
25ab79ba43
|
@ -16,7 +16,8 @@ while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
||||||
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
||||||
|
|
||||||
# Copy into tmpdir
|
# Copy into tmpdir
|
||||||
cp -R $DIR/website/ $DEPLOY/
|
shopt -s dotglob
|
||||||
|
cp -r $DIR/website/* $DEPLOY/
|
||||||
|
|
||||||
# Change into that directory
|
# Change into that directory
|
||||||
pushd $DEPLOY &>/dev/null
|
pushd $DEPLOY &>/dev/null
|
||||||
|
@ -25,6 +26,7 @@ pushd $DEPLOY &>/dev/null
|
||||||
touch .gitignore
|
touch .gitignore
|
||||||
echo ".sass-cache" >> .gitignore
|
echo ".sass-cache" >> .gitignore
|
||||||
echo "build" >> .gitignore
|
echo "build" >> .gitignore
|
||||||
|
echo "vendor" >> .gitignore
|
||||||
|
|
||||||
# Add everything
|
# Add everything
|
||||||
git init -q .
|
git init -q .
|
||||||
|
|
Loading…
Reference in New Issue