forked from tareq1988/woocommerce-bkash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin-deploy.sh
executable file
·59 lines (44 loc) · 1.38 KB
/
plugin-deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
# args
MSG=${1-'deploy from git'}
BRANCH=${2-'trunk'}
# paths
SRC_DIR=$(git rev-parse --show-toplevel)
DIR_NAME=$(basename $SRC_DIR)
DEST_DIR=~/svn/wp-plugins/$DIR_NAME/$BRANCH
# make sure we're deploying from the right dir
if [ ! -d "$SRC_DIR/.git" ]; then
echo "$SRC_DIR doesn't seem to be a git repository"
exit
fi
# make sure the destination dir exists
svn mkdir $DEST_DIR 2> /dev/null
svn add $DEST_DIR 2> /dev/null
# delete everything except .svn dirs
for file in $(find $DEST_DIR/* -not -path "*.svn*")
do
rm $file 2>/dev/null
#echo $file
done
# copy everything over from git
#rsync -r --exclude='*.git*' $SRC_DIR/* $DEST_DIR
git checkout-index -a -f --prefix=$DEST_DIR/
# delete readme.md from git checkout
rm $DEST_DIR/readme.md
# copy readme.txt to svn folder
cp $SRC_DIR/readme.txt $DEST_DIR/readme.txt
cd $DEST_DIR
# check .svnignore
for file in $(cat "$SRC_DIR/.svnignore" 2>/dev/null)
do
rm $file -rf
done
# Transform the readme
#README=$(find $DEST_DIR -iname 'README.m*')
#sed -i '' -e 's/^# \(.*\)$/=== \1 ===/' -e 's/ #* ===$/ ===/' -e 's/^## \(.*\)$/== \1 ==/' -e 's/ #* ==$/ ==/' -e 's/^### \(.*\)$/= \1 =/' -e 's/ #* =$/ =/' $README
#mv $README $DEST_DIR/readme.txt
# svn addremove
svn stat | grep '^\?' | awk '{print $2}' | xargs svn add > /dev/null 2>&1
svn stat | grep '^\!' | awk '{print $2}' | xargs svn rm > /dev/null 2>&1
svn stat
svn ci -m "$MSG"