forked from rtCamp/rtMedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·17 lines (14 loc) · 748 Bytes
/
deploy.sh
File metadata and controls
executable file
·17 lines (14 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash
# A modification of Dean Clatworthy's deploy script as found here: https://github.com/deanc/wordpress-plugin-git-svn
# The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo.
# main config
export SVNCLONEPATH="$HOME/wp-svn"
export PLUGINSLUG="buddypress-media" #must match with wordpress.org plugin slug
export MAINFILE="index.php" # this should be the name of your main php file in the wordpress plugin
#SVNUSER="rtcamp" # your svn username
##### YOU CAN STOP EDITING HERE #####
##### Downlaod Common Deploy Settings #####
wget https://raw.github.com/rtCamp/wp-plugin-bootstrap/master/deploy-common.sh
#### Execute Deploy-Common ########
bash deploy-common.sh
rm deploy-common.sh