remove extra verb arg

This commit is contained in:
Jose Garcia 2021-09-02 13:27:12 -04:00
parent bfeb4e77c9
commit c15d810d68

View file

@ -158,7 +158,7 @@ func getContainerID(ctx context.Context, logger *output.Logger, terminal *livesh
}
func setupEnv(ctx context.Context, logger *output.Logger, terminal *liveshare.Terminal, containerID, repositoryName, containerUser string) error {
setupBashProfileCmd := fmt.Sprintf(`echo "export $(cat /workspaces/.codespaces/shared/.env | xargs); exec /bin/zsh;" > /home/%v/.bash_profile`, repositoryName, containerUser)
setupBashProfileCmd := fmt.Sprintf(`echo "export $(cat /workspaces/.codespaces/shared/.env | xargs); exec /bin/zsh;" > /home/%v/.bash_profile`, containerUser)
logger.Print(".")
compositeCommand := []string{setupBashProfileCmd}