File tree 1 file changed +2
-2
lines changed
crates/crates_io_smoke_test/src 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub async fn new_lib(parent_path: &Path, name: &str) -> anyhow::Result<()> {
18
18
#[ allow( unstable_name_collisions) ]
19
19
pub async fn package ( project_path : & Path ) -> anyhow:: Result < ( ) > {
20
20
Command :: new ( "cargo" )
21
- . args ( [ "package" , "--allow-dirty" ] )
21
+ . args ( [ "package" ] )
22
22
. current_dir ( project_path)
23
23
. env ( "CARGO_TERM_COLOR" , "always" )
24
24
. status ( )
@@ -30,7 +30,7 @@ pub async fn package(project_path: &Path) -> anyhow::Result<()> {
30
30
#[ allow( unstable_name_collisions) ]
31
31
pub async fn publish ( project_path : & Path , token : & SecretString ) -> anyhow:: Result < ( ) > {
32
32
Command :: new ( "cargo" )
33
- . args ( [ "publish" , "--registry" , "staging" , "--allow-dirty" ] )
33
+ . args ( [ "publish" , "--registry" , "staging" ] )
34
34
. current_dir ( project_path)
35
35
. env ( "CARGO_TERM_COLOR" , "always" )
36
36
. env (
You can’t perform that action at this time.
0 commit comments