goatchain-cli 0.0.67-beta.8 → 0.0.68-beta.8
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/goatchain.mjs +2 -2
- package/dist/ink.mjs +2198 -865
- package/package.json +7 -7
package/bin/goatchain.mjs
CHANGED
|
@@ -94,8 +94,8 @@ function runOpentui(restArgs) {
|
|
|
94
94
|
const archMap = { x64: 'x64', arm64: 'arm64' }
|
|
95
95
|
const platform = platformMap[os.platform()] || os.platform()
|
|
96
96
|
const arch = archMap[os.arch()] || os.arch()
|
|
97
|
-
const base = '
|
|
98
|
-
const binary = platform === 'windows' ? '
|
|
97
|
+
const base = 'goatchain-cli-' + platform + '-' + arch
|
|
98
|
+
const binary = platform === 'windows' ? 'goatchain.exe' : 'goatchain'
|
|
99
99
|
|
|
100
100
|
if (process.env.DIMCODE_DEBUG) {
|
|
101
101
|
console.error('[goatchain] Wrapper version: ' + wrapperVersion)
|