Skip to content

Commit

Permalink
fix to load-bety script
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed May 16, 2014
1 parent c7f90a4 commit f3f877d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/load.bety.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ fi

# compute range based on {MY,REMOTE}SITE
MY_START_ID=$(( MYSITE * ID_RANGE + 1 ))
MY_LAST_ID=$(( START_ID + ID_RANGE - 1 ))
MY_LAST_ID=$(( MY_START_ID + ID_RANGE - 1 ))
REM_START_ID=$(( REMOTESITE * ID_RANGE + 1 ))
REM_LAST_ID=$(( START_ID + ID_RANGE - 1 ))
REM_LAST_ID=$(( REM_START_ID + ID_RANGE - 1 ))

# clean tables
for T in users citations counties covariates cultivars dbfiles ensembles entities formats likelihoods location_yields machines managements methods mimetypes models pfts posteriors priors sessions sites species treatments variables inputs traits yields; do
Expand Down

0 comments on commit f3f877d

Please sign in to comment.