diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-05-08 16:34:21 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-05-08 16:34:21 +0200 |
commit | 4d1f6352e68b2b64d5554224596bcf3c01b62b1a (patch) | |
tree | 2b50a5771f00c747b469dbda1d0f069b69ed2eff | |
parent | e7dd37910cfd8abd95b01a874815f7004616d794 (diff) | |
parent | 129f70bf9519a609d37d1e1ef797fd7d7e6bba82 (diff) | |
download | forums-4d1f6352e68b2b64d5554224596bcf3c01b62b1a.tar forums-4d1f6352e68b2b64d5554224596bcf3c01b62b1a.tar.gz forums-4d1f6352e68b2b64d5554224596bcf3c01b62b1a.tar.bz2 forums-4d1f6352e68b2b64d5554224596bcf3c01b62b1a.tar.xz forums-4d1f6352e68b2b64d5554224596bcf3c01b62b1a.zip |
Merge remote-tracking branch 'p/ticket/10177' into develop-olympus
* p/ticket/10177:
[ticket/10177] Add `-f -` to tar command to build packages with bsdtar.
-rw-r--r-- | build/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml index 268f09d674..8fb34377a9 100644 --- a/build/build.xml +++ b/build/build.xml @@ -133,7 +133,7 @@ --> <target name="export"> <exec dir="phpBB" - command="git archive ${revision} | tar -x -C ../${dir}" + command="git archive ${revision} | tar -xf - -C ../${dir}" checkreturn="true" /> <delete file="${dir}/config.php" /> <delete dir="${dir}/develop" /> |