Skip to content

Commit

Permalink
scp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-stanek committed Oct 15, 2024
1 parent 29eed10 commit fd20f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@

<phingcall target="deploy:ssh">
<property name="comment" value="Creating releases directory if not exists"/>
<property name="command" value="mkdir -p ${deploy.releasesDir}"/>
<property name="command" value="mkdir -p '${deploy.releasesDir}'"/>
</phingcall>

<phingcall target="deploy:copy-tarball">
<property name="target" value="${deploy.ssh.target}"/>
<property name="file" value="${tempDir}/builds/${deploy.releaseHash}.tar.gz"/>
<property name="toDirectory" value="${deploy.releasesDir}"/>
<property name="toDirectory" value="'${deploy.releasesDir}'"/>
</phingcall>

<property name="tarball" value="${deploy.release}.tar.gz"/>
Expand Down

0 comments on commit fd20f93

Please sign in to comment.