File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,18 @@ PROTOC_VERSION=3.9.1
27
27
PROTOC_ARCH = ${ DEFAULT_ARCH }
28
28
PROTOC_BASE = ${ DEFAULT_BASE }
29
29
POSTGRES_VERSION = 14.2
30
+ PSQL_VERSION = ${ POSTGRES_VERSION }
30
31
PYTHON_VERSION = 3.10
31
32
PYTHON2_VERSION = 2.7.18
32
33
RUBY_VERSION = 3.1.1
33
34
RUST_VERSION = 1.59.0
35
+ RUSTC_VERSION = ${ RUST_VERSION }
34
36
S3CMD_BASE = python:${ PYTHON_VERSION } -${ DEFAULT_BASE_IMAGE }
35
37
S3CMD_VERSION = 2.2.0
36
38
SWAGGER_CODEGEN_VERSION = 3.0.29
37
39
SWIPL_VERSION = 8.5.5
38
40
TYPESCRIPT_VERSION = 4.6.2
39
41
TSC_VERSION = ${ TYPESCRIPT_VERSION }
42
+ TSC_VERSION = ${ TYPESCRIPT_VERSION }
40
43
VUE_VERSION = 5.0.1
41
44
YOUTUBE_DL_VERSION = 2022.03.08.2
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ services:
113
113
php :
114
114
image : " php:${PHP_VERSION}"
115
115
psql :
116
- image : " postgres:${POSTGRES_VERSION }"
116
+ image : " postgres:${PSQL_VERSION }"
117
117
entrypoint : [ "psql" ]
118
118
protoc :
119
119
image : " protoc:${PROTOC_VERSION}"
@@ -145,7 +145,7 @@ services:
145
145
<< : *ruby
146
146
entrypoint : [ "gem" ]
147
147
rustc :
148
- image : " rust:${RUST_VERSION }"
148
+ image : " rust:${RUSTC_VERSION }"
149
149
entrypoint : [ "rustc" ]
150
150
s3cmd :
151
151
build :
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ func main() {
86
86
87
87
rawService , err := rawProject .GetService (commandName )
88
88
89
- var versionVariableExpected = strings .ToUpper (commandName ) + "_VERSION"
89
+ var versionVariableExpected = strings .ReplaceAll ( strings . ToUpper (commandName ), "-" , "_" ) + "_VERSION"
90
90
var versionVariablesUsed []string
91
91
for _ , variable := range ExtractVariables (rawService ) {
92
92
if strings .HasSuffix (variable , "_VERSION" ) {
You can’t perform that action at this time.
0 commit comments