diff options
Diffstat (limited to 'etc/generate-repos.sh')
-rwxr-xr-x | etc/generate-repos.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/generate-repos.sh b/etc/generate-repos.sh index 39f4d4e..d8cd187 100755 --- a/etc/generate-repos.sh +++ b/etc/generate-repos.sh @@ -8,9 +8,15 @@ readonly ROOT=$(readlink -f $(dirname $0)/..) : ${RULES_RUST_REPO:=https://github.com/just-buildsystem/rules-rust} : ${RULES_RUST_BRANCH:=master} +# remove files generated by just-import-cargo +rm -rf etc/deps-rust etc/defaults/rust/TARGETS # common to all cargo imports +rm -f src/rust/cargo/circle/Cargo.lock src/rust/cargo/circle/TARGETS + just-import-git -C ${ROOT}/etc/repos.template.json \ --as rules -b ${RULES_CC_BRANCH} ${RULES_CC_REPO} rules \ | just-import-git -C - \ --as rules-rust -b ${RULES_RUST_BRANCH} ${RULES_RUST_REPO} rules-rust \ + | just-import-cargo --rules rules-rust/nix --repo-root ${ROOT} -rst \ + src/rust/cargo/circle \ | just-deduplicate-repos \ | hdump > ${ROOT}/etc/repos.json |