Remove outDirOverrides

This commit is contained in:
Emil Lauridsen 2020-03-17 14:55:44 +01:00
parent f84deffd72
commit e154132c91
3 changed files with 0 additions and 15 deletions

View file

@ -23,7 +23,6 @@ export interface CargoFeatures {
allFeatures: boolean;
features: string[];
loadOutDirsFromCheck: boolean;
outDirOverrides: Record<string, string>;
}
export const enum UpdatesChannel {
@ -222,7 +221,6 @@ export class Config {
allFeatures: this.cfg.get("cargoFeatures.allFeatures") as boolean,
features: this.cfg.get("cargoFeatures.features") as string[],
loadOutDirsFromCheck: this.cfg.get("cargoFeatures.loadOutDirsFromCheck") as boolean,
outDirOverrides: this.cfg.get("cargoFeatures.outDirOverrides") as Record<string, string>,
};
}