mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Move files to be under a feature folder Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add error notification on shell sync failure Signed-off-by: Sebastian Malton <sebastian@malton.name> * Improve error handling of case where match is not found Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
12 lines
493 B
TypeScript
12 lines
493 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { getGlobalOverride } from "../../../common/test-utils/get-global-override";
|
|
import computeUnixShellEnvironmentInjectable from "./compute-unix-shell-environment.injectable";
|
|
|
|
export default getGlobalOverride(computeUnixShellEnvironmentInjectable, () => async () => {
|
|
throw new Error("Tried to get unix shell env without override");
|
|
});
|