mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:48:53 +00:00
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10178] Add path to find command to build packages on FreeBSD. [ticket/10177] Add `-f -` to tar command to build packages with bsdtar.
This commit is contained in:
commit
208fc76761
1 changed files with 3 additions and 3 deletions
|
@ -133,7 +133,7 @@
|
||||||
-->
|
-->
|
||||||
<target name="export">
|
<target name="export">
|
||||||
<exec dir="phpBB"
|
<exec dir="phpBB"
|
||||||
command="git archive ${revision} | tar -x -C ../${dir}"
|
command="git archive ${revision} | tar -xf - -C ../${dir}"
|
||||||
checkreturn="true" />
|
checkreturn="true" />
|
||||||
<delete file="${dir}/config.php" />
|
<delete file="${dir}/config.php" />
|
||||||
<delete dir="${dir}/develop" />
|
<delete dir="${dir}/develop" />
|
||||||
|
@ -141,8 +141,8 @@
|
||||||
|
|
||||||
<echo msg="Setting permissions for checkout of ${revision} in ${dir}" />
|
<echo msg="Setting permissions for checkout of ${revision} in ${dir}" />
|
||||||
<!-- set permissions of all files to 644, directories to 755 -->
|
<!-- set permissions of all files to 644, directories to 755 -->
|
||||||
<exec dir="${dir}" command="find -type f|xargs chmod 644" escape="false" />
|
<exec dir="${dir}" command="find . -type f|xargs chmod 644" escape="false" />
|
||||||
<exec dir="${dir}" command="find -type d|xargs chmod 755" escape="false" />
|
<exec dir="${dir}" command="find . -type d|xargs chmod 755" escape="false" />
|
||||||
<!-- set permissions of some directories to 777 -->
|
<!-- set permissions of some directories to 777 -->
|
||||||
<chmod mode="0777" file="${dir}/cache" />
|
<chmod mode="0777" file="${dir}/cache" />
|
||||||
<chmod mode="0777" file="${dir}/store" />
|
<chmod mode="0777" file="${dir}/store" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue