@hermespilot/link 0.7.0 → 0.7.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.
|
@@ -5621,7 +5621,7 @@ function isConversationMissingError(error) {
|
|
|
5621
5621
|
}
|
|
5622
5622
|
|
|
5623
5623
|
// src/constants.ts
|
|
5624
|
-
var LINK_VERSION = "0.7.
|
|
5624
|
+
var LINK_VERSION = "0.7.1";
|
|
5625
5625
|
var LINK_COMMAND = "hermeslink";
|
|
5626
5626
|
var LINK_DEFAULT_PORT = 52379;
|
|
5627
5627
|
var LINK_RUNTIME_DIR_NAME = ".hermeslink";
|
|
@@ -31850,6 +31850,7 @@ async function buildOfficialInstallCommand(options, targetVersion) {
|
|
|
31850
31850
|
});
|
|
31851
31851
|
const env = {
|
|
31852
31852
|
HERMESLINK_VERSION: targetVersion,
|
|
31853
|
+
HERMESLINK_NODE_PATH: process.execPath,
|
|
31853
31854
|
HERMESLINK_YES: "1",
|
|
31854
31855
|
HERMESLINK_NO_PROFILE_EDIT: "1",
|
|
31855
31856
|
HERMESLINK_NO_PATH_PROMPT: "1",
|
|
@@ -31876,6 +31877,7 @@ async function buildOfficialInstallCommand(options, targetVersion) {
|
|
|
31876
31877
|
};
|
|
31877
31878
|
}
|
|
31878
31879
|
function buildUnixInstallCommand(installerUrl) {
|
|
31880
|
+
const nodeBinDir = path29.dirname(process.execPath);
|
|
31879
31881
|
const fetchScript = [
|
|
31880
31882
|
quoteShellToken(process.execPath),
|
|
31881
31883
|
"--input-type=module",
|
|
@@ -31886,6 +31888,7 @@ function buildUnixInstallCommand(installerUrl) {
|
|
|
31886
31888
|
].join(" ");
|
|
31887
31889
|
return [
|
|
31888
31890
|
"set -e;",
|
|
31891
|
+
`PATH=${quoteShellToken(nodeBinDir)}:"$PATH"; export PATH;`,
|
|
31889
31892
|
'tmp="${TMPDIR:-/tmp}/hermespilot-link-install.$$.sh";',
|
|
31890
31893
|
`trap 'rm -f "$tmp"' EXIT;`,
|
|
31891
31894
|
"umask 077;",
|
|
@@ -32049,6 +32052,7 @@ function buildWindowsDetachedUpdaterScript(input) {
|
|
|
32049
32052
|
' Add-UpdateLog "=> Downloading official installer"',
|
|
32050
32053
|
' Invoke-RestMethod -Uri $InstallerUrl -Headers @{ "User-Agent" = "HermesPilot-Link-Updater" } -OutFile $InstallerPath',
|
|
32051
32054
|
" $env:HERMESLINK_VERSION = $TargetVersion",
|
|
32055
|
+
" $env:HERMESLINK_NODE_PATH = $NodePath",
|
|
32052
32056
|
' $env:HERMESLINK_YES = "1"',
|
|
32053
32057
|
' $env:HERMESLINK_NO_PATH_PROMPT = "1"',
|
|
32054
32058
|
' $env:HERMESLINK_SKIP_DOCTOR = "1"',
|
package/dist/cli/index.js
CHANGED
package/dist/http/app.js
CHANGED