Revision 6290
Added by Aaron Marcuse-Kubitza about 12 years ago
inputs/Makefile | ||
---|---|---|
21 | 21 |
|
22 | 22 |
##### Import logs |
23 | 23 |
|
24 |
rsyncLogs := $(rsync) --include="/*/" --include="/*/*/" --include="/*/*/logs/"\ |
|
25 |
--exclude="/*/*/logs/install.log.sql" --include="/*/*/logs/*.log.sql"\ |
|
26 |
--exclude="/*/logs/install.log.sql" --include="/*/logs/*.log.sql" --exclude="**" |
|
24 |
rsyncLogs := $(rsync) --include="/**/" --exclude="/**/logs/install.log.sql"\ |
|
25 |
--include="/**/logs/*.log.sql" --exclude="**" |
|
27 | 26 |
|
28 | 27 |
download-logs: _always |
29 | 28 |
$(rsyncLogs) $(remote) $(local) |
Also available in: Unified diff
inputs/Makefile: Import logs: $(rsyncLogs): Include log files at any depth in the directory tree rather than just 1-2 levels deep. This adds log files whose containing directories have been moved to _archive/ directories.