nope/05-link.bat

37 lines
664 B
Batchfile
Raw Normal View History

2022-01-25 16:52:05 +00:00
@echo off
set DIR=%~dp0
cd "%DIR%"
if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
2022-03-18 08:06:45 +00:00
(npm link) && (
node contribute/toLinkBrowser.js
cp ./package.json ./build/package.json
cp -r .\dist-browser\ .\build\dist-browser
2022-03-18 08:06:45 +00:00
cd ./build
(npm link) && (
cd "%DIR%"
node contribute/toNodejs.js
) || (
cd "%DIR%"
node contribute/toNodejs.js
)
) || (
node contribute/toLinkBrowser.js
cp ./package.json ./build/package.json
cp -r .\dist-browser\ .\build\dist-browser
2022-03-18 08:06:45 +00:00
cd ./build
(npm link) && (
cd "%DIR%"
node contribute/toNodejs.js
) || (
cd "%DIR%"
node contribute/toNodejs.js
)
)