We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b756d4b commit b8748a0Copy full SHA for b8748a0
lib/config.js
@@ -10,6 +10,10 @@ export const loadConfig = async (configPath) => {
10
)
11
}
12
13
+ if (typeof config.checksum === 'undefined') {
14
+ config.checksum = 'benthos'
15
+ }
16
+
17
return config
18
19
lib/install.js
@@ -38,7 +38,7 @@ const get = async (benthos) => {
38
39
const [data, checksums] = await Promise.all([
40
download(`${root}/${name}`),
41
- download(`${root}/benthos_${benthos.version}_checksums.txt`)
+ download(`${root}/${benthos.checksum}_${benthos.version}_checksums.txt`)
42
])
43
44
return { name, data, checksums }
0 commit comments