@rubytech/create-maxy 1.0.628 → 1.0.629

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy",
3
- "version": "1.0.628",
3
+ "version": "1.0.629",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy": "./dist/index.js"
@@ -27,7 +27,10 @@ set -euo pipefail
27
27
  # --------------------------------------------------------------------------
28
28
 
29
29
  # shellcheck source=_stream-log.sh
30
- source "$(dirname "${BASH_SOURCE[0]}")/_stream-log.sh"
30
+ # Resolve symlinks before dirname — ~/reset-tunnel.sh is installed as a symlink
31
+ # (see packages/create-maxy/src/index.ts:installTunnelScripts), so the raw
32
+ # BASH_SOURCE[0] points at $HOME, not the scripts directory where _stream-log.sh lives.
33
+ source "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/_stream-log.sh"
31
34
  require_stream_log_path reset-tunnel
32
35
 
33
36
  if [ "$#" -lt 1 ]; then
@@ -29,7 +29,10 @@ set -euo pipefail
29
29
  # --------------------------------------------------------------------------
30
30
 
31
31
  # shellcheck source=_stream-log.sh
32
- source "$(dirname "${BASH_SOURCE[0]}")/_stream-log.sh"
32
+ # Resolve symlinks before dirname — ~/setup-tunnel.sh is installed as a symlink
33
+ # (see packages/create-maxy/src/index.ts:installTunnelScripts), so the raw
34
+ # BASH_SOURCE[0] points at $HOME, not the scripts directory where _stream-log.sh lives.
35
+ source "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/_stream-log.sh"
33
36
  require_stream_log_path setup-tunnel
34
37
 
35
38
  # --------------------------------------------------------------------------