agent-browser 0.8.1 → 0.8.2
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/agent-browser.cmd
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
@echo off
|
|
2
2
|
setlocal
|
|
3
3
|
set "SCRIPT_DIR=%~dp0"
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
set "BINARY=%SCRIPT_DIR%agent-browser-win32-x64.exe"
|
|
5
|
+
|
|
6
|
+
if exist "%BINARY%" (
|
|
7
|
+
"%BINARY%" %*
|
|
8
|
+
exit /b %errorlevel%
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
echo Error: No binary found for win32-x64 >&2
|
|
12
|
+
echo Run 'npm run build:native' to build for your platform >&2
|
|
13
|
+
exit /b 1
|