Skip to content

Commit

Permalink
Fixes #702: Freshly-built project doesn't get a README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shahinam committed Jan 3, 2017
1 parent 17f2c30 commit 0f6d5c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions phing/tasks/blt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<!-- Remove default git remote -->
<exec dir="${repo.root}" command="${composer.bin}/drupal yaml:update:value ${blt.config-files.project} git.remotes.0 ''" logoutput="true" checkreturn="false" level="${blt.exec_level}" passthru="true"/>

<!-- Remove the README.md from blt-project, so that it can be overwritten in rsync-template target. -->
<exec dir="${repo.root}" command="rm -f README.md" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>

<exec dir="${repo.root}" command="git add -A" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
<exec dir="${repo.root}" command="git commit -m 'Initial commit.'" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
<exec dir="${repo.root}" command="cat ${blt.root}/scripts/blt/ascii-art.txt" logoutput="true" passthru="true" checkreturn="false"/>
Expand Down

0 comments on commit 0f6d5c8

Please sign in to comment.