Fixed typo in quality list

This commit is contained in:
IvanZosimov 2022-08-16 19:29:08 +02:00
parent dd8accf3a7
commit 1f801142cd
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -195,7 +195,7 @@ const IS_LINUX = process.platform === 'linux';
class DotnetQualityValidator { class DotnetQualityValidator {
constructor(quality) { constructor(quality) {
this.quality = quality; this.quality = quality;
this.qualityOptions = ['daily', 'signed', 'validated', 'preview', 'GA']; this.qualityOptions = ['daily', 'signed', 'validated', 'preview', 'ga'];
} }
validateQuality() { validateQuality() {
if (this.quality && !this.qualityOptions.includes(this.quality)) { if (this.quality && !this.qualityOptions.includes(this.quality)) {

View File

@ -18,7 +18,7 @@ export class DotnetQualityValidator {
constructor(quality: string) { constructor(quality: string) {
this.quality = quality; this.quality = quality;
this.qualityOptions = ['daily', 'signed', 'validated', 'preview', 'GA']; this.qualityOptions = ['daily', 'signed', 'validated', 'preview', 'ga'];
} }
public validateQuality() { public validateQuality() {