No capitalization in build ids for k8s

pull/273/head
Frostebite 2021-06-19 21:39:47 +01:00
parent b33e19aa34
commit aaf15d9ad8
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -1651,7 +1651,7 @@ exports.default = KubernetesStorage;
Object.defineProperty(exports, "__esModule", ({ value: true }));
class RemoteBuilderConstants {
}
RemoteBuilderConstants.alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
RemoteBuilderConstants.alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
exports.default = RemoteBuilderConstants;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
class RemoteBuilderConstants {
static alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
static alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
}
export default RemoteBuilderConstants;