diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-11 09:14:31 -0500 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-11 09:14:31 -0500 |
commit | 0aa36c3692b2b40ed82ec90ad78d3105e32bb338 (patch) | |
tree | d19593e38c4f130fc2225f86f10dc0012aea746d /scripts | |
parent | a14a796829e7619adb22bf87c36d11efb0146320 (diff) | |
download | cbc-0aa36c3692b2b40ed82ec90ad78d3105e32bb338.tar.gz |
Stop transferring json data
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/cbc_repo_copy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cbc_repo_copy b/scripts/cbc_repo_copy index 6ada4b9..68a22a3 100755 --- a/scripts/cbc_repo_copy +++ b/scripts/cbc_repo_copy @@ -10,6 +10,6 @@ if [ ! -d "$REPO_NEW" ]; then mkdir -p "$REPO_NEW" fi -rsync -aH --progress "$REPO"/ "$REPO_NEW" +rsync -aH --progress --exclude='repodata*' --exclude='.index.json' "$REPO"/ "$REPO_NEW" cd "$REPO_NEW" conda index . |