mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-12 23:36:57 +00:00
11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { AbstractMigration } from '../base/abstract-migration';
|
|
|
|
export class BinarySourceMigration extends AbstractMigration {
|
|
override readonly propertyName = 'binarySource';
|
|
|
|
override run(value: unknown): void {
|
|
if (value === 'auto') {
|
|
this.rewrite('global');
|
|
}
|
|
}
|
|
}
|