Skip to content

Commit

Permalink
Oprava build - cp při prvním nasazení (#736)
Browse files Browse the repository at this point in the history
* cp pri prvnim deploy

* cp pri prvnim deploy
  • Loading branch information
jan-stanek authored May 21, 2020
1 parent f8c8479 commit ed32869
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,27 +158,27 @@

<phingcall target="deploy:ssh">
<property name="comment" value="Copying custom CSS"/>
<property name="command" value="cp ${deploy.workDir}/www/css/web/style.css ${deploy.release}/www/css/web | true"/>
<property name="command" value="cp ${deploy.workDir}/www/css/web/style.css ${deploy.release}/www/css/web || true"/>
</phingcall>

<phingcall target="deploy:ssh">
<property name="comment" value="Copying old log directory"/>
<property name="command" value="cp -r ${deploy.workDir}/www/../log ${deploy.release} | true"/>
<property name="command" value="cp -r ${deploy.workDir}/www/../log ${deploy.release} || true"/>
</phingcall>

<phingcall target="deploy:ssh">
<property name="comment" value="Copying old backup directory"/>
<property name="command" value="cp -r ${deploy.workDir}/www/../backup ${deploy.release} | true"/>
<property name="command" value="cp -r ${deploy.workDir}/www/../backup ${deploy.release} || true"/>
</phingcall>

<phingcall target="deploy:ssh">
<property name="comment" value="Copying old img directory"/>
<property name="command" value="cp -r ${deploy.workDir}/www/img ${deploy.release}/www | true"/>
<property name="command" value="cp -r ${deploy.workDir}/www/img ${deploy.release}/www || true"/>
</phingcall>

<phingcall target="deploy:ssh">
<property name="comment" value="Copying old files directory"/>
<property name="command" value="cp -r ${deploy.workDir}/www/files ${deploy.release}/www | true"/>
<property name="command" value="cp -r ${deploy.workDir}/www/files ${deploy.release}/www || true"/>
</phingcall>

<phingcall target="deploy:ssh">
Expand Down

0 comments on commit ed32869

Please sign in to comment.