Merge scripts into a single one, update neovim

This commit is contained in:
2024-10-23 21:44:31 +11:00
parent 954f91a4ef
commit 2aca88b278
7 changed files with 8 additions and 65 deletions
-7
View File
@@ -1,7 +0,0 @@
@echo off
setlocal
set path_to_add=%devenver_root%\CMake\3.24.3\bin
set path=%path_to_add%;%path%
echo [DEVENVER] "%~dpnx0" is adding to path "%path_to_add%"
call %*
endlocal
-7
View File
@@ -1,7 +0,0 @@
@echo off
setlocal
set path_to_add=%devenver_root%\CMake\3.26.4\bin
set path=%path_to_add%;%path%
echo [DEVENVER] "%~dpnx0" is adding to path "%path_to_add%"
call %*
endlocal
-7
View File
@@ -1,7 +0,0 @@
@echo off
setlocal
set path_to_add=%devenver_root%\CMake\3.29.1\bin
set path=%path_to_add%;%path%
echo [DEVENVER] "%~dpnx0" is adding to path "%path_to_add%"
call %*
endlocal
-12
View File
@@ -1,12 +0,0 @@
@echo off
setlocal
set desired_path=%devenver_root%\raddbg\trunk
set desired_exe=raddbg.exe
set path=%desired_path%;%path%
set exe_to_use=""
for /f "delims=" %%a in ('where "$desired_path:%desired_exe%"') do ( set "exe_to_use=%%a")
echo [DEVENVER] Executing script "%~dpnx0" with "%exe_to_use%"
start /B %desired_exe% --user:%desired_path%\..\doylet.raddbg_user %*
endlocal
-11
View File
@@ -1,11 +0,0 @@
@echo off
setlocal
set desired_path=%devenver_root%\RemedyBG\0_4_0_3
set desired_exe=remedybg.exe
set path=%desired_path%;%path%
set exe_to_use=""
for /f "delims=" %%a in ('where "$desired_path:%desired_exe%"') do ( set "exe_to_use=%%a")
echo [DEVENVER] Executing script "%~dpnx0" with "%exe_to_use%"
start /B %desired_exe% %*
endlocal
-13
View File
@@ -1,13 +0,0 @@
@echo off
:: Check if an argument is provided
if "%~1"=="" (
echo Usage: %0 FILE_PATH
exit /b
)
:: Calculate SHA256 hash using PowerShell and store it in a variable
for /f "delims=" %%a in ('powershell -Command "(Get-FileHash \"%~1\" -Algorithm SHA256).Hash"') do set HASH=%%a
:: Open browser with VirusTotal URL
start https://www.virustotal.com/gui/file/%HASH%