From 1e0c9b546bcf1f14f63906578b3f5730766b2c8d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 5 Sep 2018 13:49:10 -0700 Subject: [PATCH] Move simplejit after the umbrella crate in publish-all.sh. Simplejit's example program uses the umbrella, so publish it after the umbrella crate to preserve the topological ordering. --- cranelift/publish-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cranelift/publish-all.sh b/cranelift/publish-all.sh index 7eb2ff2734..ee477f17e8 100755 --- a/cranelift/publish-all.sh +++ b/cranelift/publish-all.sh @@ -37,8 +37,8 @@ echo git commit -a -m "\"Bump version to $version"\" echo git push for crate in \ entity bforest codegen/meta codegen frontend native \ - reader wasm module simplejit \ - faerie umbrella + reader wasm module \ + faerie umbrella simplejit do echo cargo publish --manifest-path "lib/$crate/Cargo.toml" done