Revision 11800
Added by Aaron Marcuse-Kubitza almost 11 years ago
README.TXT | ||
---|---|---|
69 | 69 |
To recover from a closed terminal window: screen -r |
70 | 70 |
To restart an aborted import for a specific table: |
71 | 71 |
export version=<version> |
72 |
(make inputs/<datasrc>/<table>/import_scrub by_col=1 continue=1; make inputs/<datasrc>/publish) & |
|
72 |
(set -o errexit; make inputs/<datasrc>/<table>/import_scrub by_col=1 continue=1; make inputs/<datasrc>/publish) &
|
|
73 | 73 |
bin/after_import $! & # $! can also be obtained from `jobs -l` |
74 | 74 |
Get $version: echo $version |
75 | 75 |
Set $version in all vegbiendev terminals: export version=<version> |
Also available in: Unified diff
bugfix: /README.TXT: Full database import: To restart an aborted import for a specific table: run the two commands in errexit mode so that the datasource does not incorrectly have the temp suffix removed if the import command exited with an error