-
Notifications
You must be signed in to change notification settings - Fork 5
/
.wp-release.conf
35 lines (30 loc) · 1.07 KB
/
.wp-release.conf
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
#!/bin/bash
# wp-release.sh configuration file.
# WordPress Plugin Directory configuration.
SHORTNAME="wpgiftregistry"
# Plugin configuration.
PLUGINPATH=`pwd`
MAINFILE="wpgiftregistry.php"
# Subversion configuration.
# Your WordPress.org svn username.
SVNUSER="3qbik"
# Path for checking out the SVN repo.
# Ideally relative to your plugin directory (use default) to avoid
# Cygwin/Mingw32 vs. Windows filepath conversion problems.
# When using a folder within your plugin directory, add it to your .gitignore
# file.
# May exist already. No trailing (back)slash. Do not add /trunk.
SVNPATH="wp-release"
# Dry-run configuration.
# When enabled (1), all actions affecting remotes (both git and svn) are
# simulated only but not executed. Only local repositories (working dirs) are
# changed. Disable (0) to perform production changes.
DRYRUN=0
# Advanced Dry-run configuration. (SVN only)
# Quickstart:
# mkdir /tmp/myplugin
# svnadmin create /tmp/myplugin
# svnserve -X -r /tmp
# svn checkout svn://localhost/myplugin
#SVNURL=svn://localhost/myplugin
#SVNPATH="wp-release-dummy"