php symfony project:deploy -t production
>> exec rsync --dry-run -azC --force --dele...
[email protected]'s password:
sending incremental file list
sent 97140 bytes received 912 bytes 21789.33 bytes/sec
total size is 44912109 speedup is 458.04 (DRY RUN)
The rsync_exclude.txt has:
# Project files
/cache/*
/log/*
/web/*_dev.php
/web/uploads/*
/config/databases.yml
/config/rsync_exclude.txt
/apps/frontend/config/app.yml
Now I run my diff and see the reality:
diff --recursive --brief prod/ dev/ | sed '/.svn/d' | grep Only
Only in prod/cache: project_autoload.cache
Only in dev/lib/filter/doctrine/base: BaseVoteFormFilter.class.php
Only in dev/lib/filter/doctrine: VoteFormFilter.class.php
Only in dev/lib/form/doctrine/base: BaseVoteForm.class.php
Only in dev/lib/form/doctrine: VoteForm.class.php
Only in dev/lib/model/doctrine/base: BaseVote.class.php
Only in dev/lib/model/doctrine: Vote.class.php
Only in dev/lib/model/doctrine: VoteTable.class.php
Only in dev/web: frontend_dev.php
All of these files should exist in dev AND prod.
Any ideas on why the project deploy isn't sending all the files?