Skip to content

Commit 3067071

Browse files
committed
fix: made cli update local dependencies properly
It didn't update them for the new integration, so beta 19 needs to be yanked immediately.
1 parent 971c8bc commit 3067071

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/perseus-cli/src/prepare.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,12 @@ pub fn prepare(dir: PathBuf) -> Result<(), PrepError> {
102102
&format!("version = \"{}\"", PERSEUS_VERSION),
103103
)
104104
.replace(
105-
"{ path = \"../../../../packages/perseus-actix-web\" }",
106-
&format!("\"{}\"", PERSEUS_VERSION),
105+
"path = \"../../../../packages/perseus-actix-web\"",
106+
&format!("version = \"{}\"", PERSEUS_VERSION),
107+
)
108+
.replace(
109+
"path = \"../../../../packages/perseus-warp\"",
110+
&format!("version = \"{}\"", PERSEUS_VERSION),
107111
);
108112
#[cfg(not(debug_assertions))]
109113
let updated_builder_manifest = updated_builder_manifest.replace(

0 commit comments

Comments
 (0)