Skip to content

Commit

Permalink
[ticket/12483] Add a .sh that moves an extension in place
Browse files Browse the repository at this point in the history
PHPBB3-12483
  • Loading branch information
nickvergessen committed Jun 10, 2014
1 parent 997028a commit 709296e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions travis/prepare-extension.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
#
# @copyright (c) 2014 phpBB Group
# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
#
set -e
set -x

EXTNAME=$1
BRANCH=$2

# Move the extension in place
mkdir --parents phpBB/ext/$EXTNAME
cp -R ../tmp/* phpBB/ext/$EXTNAME

# Move the extensions travis/phpunit-*-travis.xml files in place
cp -R travis/* phpBB/ext/$EXTNAME/travis

0 comments on commit 709296e

Please sign in to comment.