@ondrej-svec/hog 1.22.0 → 1.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -4094,8 +4094,10 @@ function splitWithInfo(info, widthPercent) {
4094
4094
  "-P",
4095
4095
  "-F",
4096
4096
  "#{pane_id}",
4097
- "printf",
4098
- "Issue: %s\\n\\nURL: %s\\n\\nNo Claude Code session active.\\nPress C to launch one.\\n",
4097
+ "sh",
4098
+ "-c",
4099
+ 'printf "Issue: %s\\n\\nURL: %s\\n\\nNo Claude Code session active.\\nPress C to launch one.\\n" "$1" "$2"; read _',
4100
+ "--",
4099
4101
  info.title,
4100
4102
  info.url
4101
4103
  ],
@@ -9416,7 +9418,7 @@ async function resolveRef(ref, config2) {
9416
9418
  }
9417
9419
  }
9418
9420
  var program = new Command();
9419
- program.name("hog").description("Personal command deck \u2014 GitHub Projects dashboard with workflow orchestration").version("1.22.0").option("--json", "Force JSON output").option("--human", "Force human-readable output").hook("preAction", (thisCommand) => {
9421
+ program.name("hog").description("Personal command deck \u2014 GitHub Projects dashboard with workflow orchestration").version("1.22.1").option("--json", "Force JSON output").option("--human", "Force human-readable output").hook("preAction", (thisCommand) => {
9420
9422
  const opts = thisCommand.opts();
9421
9423
  if (opts.json) setFormat("json");
9422
9424
  if (opts.human) setFormat("human");