opentmux 1.5.5 → 1.5.7
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/bin/opentmux.js +1 -1
- package/package.json +1 -1
package/dist/bin/opentmux.js
CHANGED
|
@@ -849,7 +849,7 @@ async function main() {
|
|
|
849
849
|
];
|
|
850
850
|
const isCliCommand = args.length > 0 && NON_TUI_COMMANDS.includes(args[0]);
|
|
851
851
|
const isInteractiveMode = args.length === 0;
|
|
852
|
-
if (isCliCommand
|
|
852
|
+
if (isCliCommand) {
|
|
853
853
|
const opencodeBin2 = findOpencodeBin();
|
|
854
854
|
if (!opencodeBin2) {
|
|
855
855
|
console.error(
|
package/package.json
CHANGED