mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-12 23:28:53 +00:00
22 lines
569 B
Batchfile
22 lines
569 B
Batchfile
@echo off
|
|
rem SPDX-License-Identifier: Apache-2.0
|
|
rem
|
|
rem Copyright (C) 2023-2024 ArtInChip Technology Co., Ltd
|
|
|
|
if "%CD%"=="C:\Windows\system32" (
|
|
echo Current user is administrator, need change path to Luban-Lite ...
|
|
cd /d %~dp0
|
|
)
|
|
|
|
if /i "%processor_architecture%"=="x86" (
|
|
start .\tools\env\tools\ConEmu\ConEmu.exe
|
|
) else if /i "%processor_architecture%"=="amd64" (
|
|
if defined processor_architew6432 (
|
|
start .\tools\env\tools\ConEmu\ConEmu.exe
|
|
) else (
|
|
start .\tools\env\tools\ConEmu\ConEmu64.exe
|
|
)
|
|
)
|
|
|
|
@echo success
|