-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-enable final install-related script
Signed-off-by: zFernand0 <[email protected]>
- Loading branch information
Showing
10 changed files
with
112 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* This program and the accompanying materials are made available under the terms of the | ||
* Eclipse Public License v2.0 which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Copyright Contributors to the Zowe Project. | ||
* | ||
*/ | ||
|
||
/** | ||
* Class to contain CLI constants | ||
* @export | ||
* @class CliConstants | ||
*/ | ||
export class CliConstants { | ||
|
||
/** | ||
* Custom log location to prevent logging to default folder based on the package name | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly LOG_LOCATION = "zowe/logs/zowe.log"; | ||
|
||
/** | ||
* Display name | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly DISPLAY_NAME = "Zowe CLI"; | ||
|
||
/** | ||
* Binary executable name | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly BINARY_NAME = "zowe"; | ||
|
||
/** | ||
* | ||
* Documentation link for the CLI | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly DOCUMENTATION_LINK = "https://docs.zowe.org"; | ||
|
||
/** | ||
* | ||
* Support link for zowe | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly SUPPORT_LINK = "https://www.zowe.org"; | ||
|
||
/** | ||
* Description of product | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly DESCRIPTION = | ||
`Welcome to ${CliConstants.DISPLAY_NAME}! | ||
${CliConstants.DISPLAY_NAME} is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS. | ||
For additional ${CliConstants.DISPLAY_NAME} documentation, visit ${CliConstants.DOCUMENTATION_LINK} | ||
For ${CliConstants.DISPLAY_NAME} support, visit ${CliConstants.SUPPORT_LINK} | ||
`; | ||
|
||
/** | ||
* Home environment variable | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly HOME_ENV_KEY = "ZOWE_CLI_HOME"; | ||
|
||
|
||
/** | ||
* Prefix for environmental variable settings used by Imperative | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly ENV_PREFIX = "ZOWE"; | ||
|
||
/** | ||
* Home directory | ||
* @static | ||
* @memberof CliConstants | ||
*/ | ||
public static readonly HOME_DIR = "~/.zowe"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./lib" | ||
}, | ||
"include": [ | ||
|
Oops, something went wrong.