Skip to content

Commit

Permalink
fix an issue with pwa-studio shell container
Browse files Browse the repository at this point in the history
  • Loading branch information
janosmiko committed Mar 8, 2023
1 parent ada296f commit 7e0066b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.5] - 2023-03-08

### Fixed

- Fix an issue with the default shell container of PWA-Studio environment.

## [0.4.4] - 2023-03-08

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.4
v0.4.5
2 changes: 1 addition & 1 deletion cmd/shell/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func NewCmdShell(conf *config.Config) *cmdpkg.Command {
Config: conf,
}

cmd.Flags().StringVar(&conf.ShellContainer, "container", "php-fpm", "the container you want to get in")
cmd.Flags().StringVar(&conf.ShellContainer, "container", "", "the container you want to get in")
_ = cmd.Config.BindPFlag(fmt.Sprintf("%s_shell_container", conf.AppName()), cmd.Flags().Lookup("container"))

cmd.Flags().StringVar(&conf.DefaultShellCommand, "command", "", "the container you want to get in")
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=rewardenv

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=reward
sonar.projectVersion=0.4.4
sonar.projectVersion=0.4.5

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
Expand Down

0 comments on commit 7e0066b

Please sign in to comment.