Merge branch 'devel-2.4.2' of github.com:danmunn/redmine_dmsf into devel-2.4.2

This commit is contained in:
Karel Pičman 2020-01-09 10:31:35 +01:00
commit f73739a64f
2 changed files with 9 additions and 2 deletions

View File

@ -52,6 +52,9 @@ env:
- DB=sqlite
- DB=mysql
- DB=postgres
- DB=sqlite REDMINE_GIT_TAG=4.1-stable
- DB=mysql REDMINE_GIT_TAG=4.1-stable
- DB=postgres REDMINE_GIT_TAG=4.1-stable
cache: bundler

View File

@ -20,8 +20,12 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
export REDMINE_GIT_REPO=git://github.com/redmine/redmine.git
export REDMINE_GIT_TAG=4.0-stable
if [[ ! -v REDMINE_GIT_REPO ]]; then
export REDMINE_GIT_REPO=git://github.com/redmine/redmine.git
fi
if [[ ! -v REDMINE_GIT_TAG ]]; then
export REDMINE_GIT_TAG=4.0-stable
fi
clone()
{