Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oprava build - cp při prvním nasazení #735

Merged
merged 1 commit into from
May 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"/>
<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}"/>
<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}"/>
<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"/>
<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"/>
<property name="command" value="cp -r ${deploy.workDir}/www/files ${deploy.release}/www | true"/>
</phingcall>

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