@ship-cli/opencode 0.2.2 → 0.2.3
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/package.json +1 -1
- package/src/plugin.ts +1 -1
package/package.json
CHANGED
package/src/plugin.ts
CHANGED
|
@@ -1567,7 +1567,7 @@ const actionHandlers: Record<string, ActionHandler> = {
|
|
|
1567
1567
|
Effect.gen(function* () {
|
|
1568
1568
|
const status = yield* ship.getStackStatus(args.workdir);
|
|
1569
1569
|
if (!status.isRepo) {
|
|
1570
|
-
return `Error: ${status.error || "Not a jj repository"}`;
|
|
1570
|
+
return `Error: ${status.error || "Not a jj repository. Run 'jj git init --colocate' to set up jj for stacked changes."}`;
|
|
1571
1571
|
}
|
|
1572
1572
|
if (!status.change) {
|
|
1573
1573
|
return "Error: Could not get current change";
|