paratix 0.12.6 → 0.12.8

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.
@@ -648,6 +648,8 @@ import { Readable } from "stream";
648
648
  // src/terminal.ts
649
649
  import { createInterface } from "readline";
650
650
  import { Writable } from "stream";
651
+ var ASCII_ESC = 27;
652
+ var ANSI_SHOW_CURSOR = `${String.fromCharCode(ASCII_ESC)}[?25h`;
651
653
 
652
654
  // src/ssh.ts
653
655
  function assertValidMktempDirectory(directory) {
@@ -3376,7 +3378,7 @@ async function getRuntime(ssh2, action, explicit) {
3376
3378
  return detectRuntime(ssh2);
3377
3379
  }
3378
3380
  function composeCommand(runtime, projectDirectory) {
3379
- return `${runtime} compose --project-directory ${shellQuote(projectDirectory)}`;
3381
+ return `cd ${shellQuote(projectDirectory)} && ${runtime} compose`;
3380
3382
  }
3381
3383
  function parseComposeProjectName(stdout, projectDirectory) {
3382
3384
  try {
@@ -19068,4 +19070,4 @@ export {
19068
19070
  ufw,
19069
19071
  user
19070
19072
  };
19071
- //# sourceMappingURL=chunk-CWGQ2MYN.js.map
19073
+ //# sourceMappingURL=chunk-M3ZQJNKM.js.map