Skip to content

Commit

Permalink
exclude years for exposures and preproc
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Sep 17, 2024
1 parent ed5175d commit 9b17633
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/desi_tucson_transfer_catchup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ for d in engineering/focalplane engineering/focalplane/hwtables \
spectro/data) priority=''; exclude='--exclude 2018* --exclude 2019* --exclude 2020* --exclude 2021* --exclude 2022* --exclude 2023*' ;;
spectro/nightwatch/kpno) priority='nice'; exclude='--exclude 2021* --exclude 2022* --exclude 2023*' ;;
spectro/redux/daily) priority=''; exclude='--exclude *.tmp --exclude attic --exclude exposures --exclude preproc --exclude temp --exclude tiles' ;;
spectro/redux/daily/exposures) priority=''; exclude='--exclude *.tmp' ;;
spectro/redux/daily/preproc) priority=''; exclude='--exclude *.tmp --exclude preproc-*.fits --exclude preproc-*.fits.gz' ;;
spectro/redux/daily/exposures) priority=''; exclude='--exclude 2019* --exclude 2020* --exclude 2021* --exclude 2022* --exclude 2023* --exclude *.tmp' ;;
spectro/redux/daily/preproc) priority=''; exclude='--exclude 2019* --exclude 2020* --exclude 2021* --exclude 2022* --exclude 2023* --exclude *.tmp --exclude preproc-*.fits --exclude preproc-*.fits.gz' ;;
spectro/redux/daily/tiles) priority=''; exclude='--exclude *.tmp --exclude temp' ;;
*) priority='nice'; exclude='' ;;
esac
Expand Down
6 changes: 3 additions & 3 deletions py/desitransfer/tucson.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
'spectro/redux/daily': ["--exclude", "*.tmp", "--exclude", "attic",
"--exclude", "exposures", "--exclude", "preproc",
"--exclude", "temp", "--exclude", "tiles"],
'spectro/redux/daily/exposures': ["--exclude", "*.tmp"],
'spectro/redux/daily/preproc': ["--exclude", "*.tmp", "--exclude", "preproc-*.fits",
"--exclude", "preproc-*.fits.gz"],
'spectro/redux/daily/exposures': exclude_years(2019) + ["--exclude", "*.tmp"],
'spectro/redux/daily/preproc': exclude_years(2019) + ["--exclude", "*.tmp", "--exclude", "preproc-*.fits",
"--exclude", "preproc-*.fits.gz"],
'spectro/redux/daily/tiles': ["--exclude", "*.tmp", "--exclude", "temp"],
'spectro/templates/basis_templates': ["--exclude", ".svn", "--exclude", "basis_templates_svn-old"],
'survey/ops/surveyops/trunk': ["--exclude", ".svn", "--exclude", "cronupdate.log"],
Expand Down

0 comments on commit 9b17633

Please sign in to comment.