Skip to content

Commit fe39b33

Browse files
authored
Merge branch 'dev' into core-clean
2 parents ee721f0 + 85df769 commit fe39b33

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

common/commands/configfile.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ func handleInteractiveConfigCreation(configFile *ConfigFile, confType project.Pr
173173
return configFile.setDeployer(false)
174174
case project.Cocoapods:
175175
return configFile.setDeployerResolver()
176+
case project.Swift:
177+
return configFile.setDeployerResolver()
176178
}
177179
return
178180
}

common/project/projectconfig.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const (
4040
Build
4141
Terraform
4242
Cocoapods
43+
Swift
4344
)
4445

4546
type ConfigType string
@@ -64,6 +65,7 @@ var ProjectTypes = []string{
6465
"build",
6566
"terraform",
6667
"cocoapods",
68+
"swift",
6769
}
6870

6971
func (projectType ProjectType) String() string {

0 commit comments

Comments
 (0)