We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2761ac commit e2d947dCopy full SHA for e2d947d
src/librustpkg/rustpkg.rc
@@ -234,13 +234,14 @@ impl Ctx {
234
}
235
};
236
237
- // Find crates inside the workspace
+ // If there was a package script, it should have finished
238
+ // the build already. Otherwise...
239
if !custom {
240
+ // Find crates inside the workspace
241
src.find_crates();
242
+ // Build it!
243
+ src.build(&dst_dir, cfgs);
244
-
- // Build it!
- src.build(&dst_dir, cfgs);
245
246
~"clean" => {
247
if args.len() < 1 {
0 commit comments