squeezr-ai 1.16.17 → 1.16.18
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/bin/squeezr.js +1 -3
- package/package.json +1 -1
package/bin/squeezr.js
CHANGED
|
@@ -177,9 +177,7 @@ function installShellWrapper() {
|
|
|
177
177
|
const psMarker = '# squeezr wrapper'
|
|
178
178
|
const psFunction = `${psMarker}
|
|
179
179
|
function squeezr {
|
|
180
|
-
|
|
181
|
-
if (-not $bin) { $bin = (Get-Command squeezr -ErrorAction SilentlyContinue).Source }
|
|
182
|
-
& node $bin @args
|
|
180
|
+
& squeezr.cmd @args
|
|
183
181
|
if ($args[0] -match '^(start|setup|update)$') {
|
|
184
182
|
@('ANTHROPIC_BASE_URL','GEMINI_API_BASE_URL','HTTPS_PROXY','NODE_EXTRA_CA_CERTS') | ForEach-Object {
|
|
185
183
|
$v = [Environment]::GetEnvironmentVariable($_, 'User')
|
package/package.json
CHANGED