Skip to content

Commit 2593e18

Browse files
committed
Fix package creation
1 parent e8f932e commit 2593e18

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/deploy-to-prod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ $(phpenv version-name) = "7.1" ];
77
#scp package.tgz $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
88
#ssh $DEPLOY_USER@$DEPLOY_HOST $DEPLOY_PATH/deploy.sh
99
#ssh $DEPLOY_USER@$DEPLOY_HOST php\ ~/php.of.by/builds/current/bin/console\ doctrine:migrations:migrate\ --env=prod
10-
ssh $DEPLOY_USER@$DEPLOY_HOST mv\ ~/php.of.by/builds/current\ ~/php.of.by/builds/current_old
10+
#ssh $DEPLOY_USER@$DEPLOY_HOST mv\ ~/php.of.by/builds/current\ ~/php.of.by/builds/current_old
1111
vendor/bin/dep deploy production
1212
fi

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,8 +383,8 @@
383383
<includepath classpath="${project-vendor-dir}/pear/console_getopt" mode="prepend"/>
384384
<includepath classpath="${project-vendor-dir}/pear/archive_tar" mode="prepend"/>
385385
<tar destfile="package.tgz" includeemptydirs="true" compression="gzip">
386-
<fileset dir="${project.basedir}" >
387-
<include name="${project-build-dir}/**" />
386+
<fileset dir="${project-build-dir}" >
387+
<include name="**" />
388388
</fileset>
389389
</tar>
390390
</target>

0 commit comments

Comments
 (0)