Skip to content

Commit

Permalink
Build: August 16, 2024, 08:57:27 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
SHSharkar committed Aug 16, 2024
1 parent a1276f4 commit e3d8a00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
7 changes: 3 additions & 4 deletions out/cli.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -44639,7 +44639,7 @@ function G3(t2, e3) {
// package.json
var package_default = {
name: "gitwz",
version: "8.0.0",
version: "8.1.0",
description: "Transform your git commits quickly and easily with AI (OpenAI GPT). Using this tool, you can make your git commits more visually appealing. It only takes a few seconds to create eye-catching git commits that stand out.",
type: "module",
license: "MIT",
Expand Down Expand Up @@ -61285,9 +61285,8 @@ var getConfig = () => {
const validator = configValidators[configKey];
config8[configKey] = validator(config8[configKey] ?? configFromEnv[configKey], config8);
} catch (error) {
$e(
`'${configKey}' name is invalid, it should be either 'GW_${configKey.toUpperCase()}' or it doesn't exist.`
);
const suggestedKey = configKey.startsWith("GW_") ? configKey : `GW_${configKey}`;
$e(`'${configKey}' name is invalid, it should be '${suggestedKey}' or it doesn't exist.`);
$e(`Manually fix the '.env' file or global '~/.gitwz' config file.`);
process.exit(1);
}
Expand Down
5 changes: 2 additions & 3 deletions out/github-action.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -76526,9 +76526,8 @@ var getConfig = () => {
const validator = configValidators[configKey];
config7[configKey] = validator(config7[configKey] ?? configFromEnv[configKey], config7);
} catch (error) {
$e(
`'${configKey}' name is invalid, it should be either 'GW_${configKey.toUpperCase()}' or it doesn't exist.`
);
const suggestedKey = configKey.startsWith("GW_") ? configKey : `GW_${configKey}`;
$e(`'${configKey}' name is invalid, it should be '${suggestedKey}' or it doesn't exist.`);
$e(`Manually fix the '.env' file or global '~/.gitwz' config file.`);
process.exit(1);
}
Expand Down

0 comments on commit e3d8a00

Please sign in to comment.