Skip to content

Commit

Permalink
dont run gitpod public in fast setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Carbrex committed Jun 17, 2024
1 parent 7273475 commit 0e195fe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,15 +275,15 @@ fn setup(mut config: Config, first_setup: bool, fast: bool) -> std::io::Result<(
true
},
);
if Gitpod::is_host()
&& confirm("By default, only this browser session can access your Gitpod development site.\nWould you like it to be accessible to other clients?")
.initial_value(false)
.interact()?
{
gitpod_public()?;
}
}

if Gitpod::is_host()
&& confirm("By default, only this browser session can access your Gitpod development site.\nWould you like it to be accessible to other clients?")
.initial_value(false)
.interact()?
{
gitpod_public()?;
}

let selected_profiles: Vec<String> = services
.iter()
Expand Down

0 comments on commit 0e195fe

Please sign in to comment.