mirror of
https://github.com/werf/actions.git
synced 2026-03-25 08:53:07 +03:00
Fix typo in not supported werf version error
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -11499,7 +11499,7 @@ function ValidateWerfVersion(version) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or lower than {1})', version.trim(), minimalWerfVersion));
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or greater than {1})', version.trim(), minimalWerfVersion));
|
||||
}
|
||||
exports.ValidateWerfVersion = ValidateWerfVersion;
|
||||
|
||||
|
||||
49021
cleanup/index.js
49021
cleanup/index.js
File diff suppressed because one or more lines are too long
49291
converge/index.js
49291
converge/index.js
File diff suppressed because one or more lines are too long
49291
deploy/index.js
49291
deploy/index.js
File diff suppressed because one or more lines are too long
49107
dismiss/index.js
49107
dismiss/index.js
File diff suppressed because one or more lines are too long
25992
install/index.js
25992
install/index.js
File diff suppressed because one or more lines are too long
@@ -11499,7 +11499,7 @@ function ValidateWerfVersion(version) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or lower than {1})', version.trim(), minimalWerfVersion));
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or greater than {1})', version.trim(), minimalWerfVersion));
|
||||
}
|
||||
exports.ValidateWerfVersion = ValidateWerfVersion;
|
||||
|
||||
|
||||
@@ -4207,7 +4207,7 @@ function run() {
|
||||
}
|
||||
// legacy
|
||||
if (process.env.WERF_DOCKER_OPTIONS) {
|
||||
args.push(typescript_string_operations_1.String.Format("--docker-options={0}", process.env.WERF_DOCKER_OPTIONS));
|
||||
args.push(typescript_string_operations_1.String.Format('--docker-options={0}', process.env.WERF_DOCKER_OPTIONS));
|
||||
}
|
||||
// legacy
|
||||
if (process.env.WERF_DRY_RUN) {
|
||||
@@ -11621,7 +11621,7 @@ function ValidateWerfVersion(version) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or lower than {1})', version.trim(), minimalWerfVersion));
|
||||
throw new Error(typescript_string_operations_1.String.Format('werf version {0} is not supported (expected version should be equal or greater than {1})', version.trim(), minimalWerfVersion));
|
||||
}
|
||||
exports.ValidateWerfVersion = ValidateWerfVersion;
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ export function ValidateWerfVersion(version: string): void {
|
||||
|
||||
throw new Error(
|
||||
String.Format(
|
||||
'werf version {0} is not supported (expected version should be equal or lower than {1})',
|
||||
'werf version {0} is not supported (expected version should be equal or greater than {1})',
|
||||
version.trim(),
|
||||
minimalWerfVersion
|
||||
)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import * as core from '@actions/core'
|
||||
import {PrepareEnvironAndRunWerfCommand} from './common'
|
||||
import {String} from 'typescript-string-operations'
|
||||
import { parseArgsStringToArgv } from 'string-argv'
|
||||
import {parseArgsStringToArgv} from 'string-argv'
|
||||
|
||||
async function run(): Promise<void> {
|
||||
try {
|
||||
@@ -17,7 +17,7 @@ async function run(): Promise<void> {
|
||||
// legacy
|
||||
if (process.env.WERF_DOCKER_OPTIONS) {
|
||||
args.push(
|
||||
String.Format("--docker-options={0}", process.env.WERF_DOCKER_OPTIONS)
|
||||
String.Format('--docker-options={0}', process.env.WERF_DOCKER_OPTIONS)
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user