Skip to content

Commit

Permalink
Фикс
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovEV committed Jan 18, 2024
1 parent 40ed26c commit ce00e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class InitInfoBaseOptions implements Serializable {
* fromSource - инициализация расширения из исходников;
* fromInternet - скачивание скомпилированного cfe по ссылке.
""")
String initMethod;
InitMethod initMethod;

@JsonPropertyDescription("""
Хранит в себе путь к расширению.
Expand Down
4 changes: 2 additions & 2 deletions src/ru/pulsar/jenkins/library/configuration/InitMethod.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import com.fasterxml.jackson.annotation.JsonProperty

enum InitMethod {
@JsonProperty("fromSource")
fromSource,
SOURCE,

@JsonProperty("fromInternet")
fromInternet
INTERNET

}

0 comments on commit ce00e63

Please sign in to comment.