We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de75ea4 commit d3370d7Copy full SHA for d3370d7
src/index.ts
@@ -358,7 +358,11 @@ export async function main(config: Output<typeof Config>) {
358
p.log.error("Something went wrong when committing: " + err);
359
}
360
p.log.success("Commit Complete");
361
+
362
+ // Instead of deleting individual keys, just get what we need and clear.
363
+ const user_name = prompt_cache.get("username");
364
prompt_cache.clear();
365
+ if (user_name) prompt_cache.set("username", user_name);
366
367
368
function build_commit_string(
0 commit comments