Merge branch 'master' of github.com:doy-lee/doy-lee into master

This commit is contained in:
doyle 2021-08-17 21:59:02 +10:00
commit 6698a7b4d2
2 changed files with 13 additions and 1 deletions

View File

@ -194,7 +194,6 @@ if !install_llvm_clang! == 1 (
set llvm_bin_dir=!llvm_dir!\bin set llvm_bin_dir=!llvm_dir!\bin
) )
REM ---------------------------------------------------------------------------- REM ----------------------------------------------------------------------------
REM Misc Tools REM Misc Tools
REM ---------------------------------------------------------------------------- REM ----------------------------------------------------------------------------
@ -238,6 +237,18 @@ if !install_mobaxterm! == 1 (
) )
) )
REM ----------------------------------------------------------------------------
REM O&O ShutUp10 (Privacy Tool for Windows)
REM ----------------------------------------------------------------------------
if !install_ooshutup10! == 1 (
set oo_shutup_10_dir=!tools_dir!\oo_shutup_10
set oo_shutup_10_file=!oo_shutup_10_dir!\oo_shutup_10.exe
if not exist "!oo_shutup_10_file!" (
if not exist "!oo_shutup_10_dir!" mkdir "!oo_shutup_10_dir!"
call :DownloadFile "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" "!oo_shutup_10_file!" || exit /B
)
)
REM ---------------------------------------------------------------------------- REM ----------------------------------------------------------------------------
REM ProcessHacker REM ProcessHacker
REM ---------------------------------------------------------------------------- REM ----------------------------------------------------------------------------

View File

@ -13,6 +13,7 @@ set install_keypirinha=1
set install_llvm_clang=1 set install_llvm_clang=1
set install_mingw64=1 set install_mingw64=1
set install_mobaxterm=1 set install_mobaxterm=1
set install_ooshutup10=1
set install_process_hacker=1 set install_process_hacker=1
set install_python3=1 set install_python3=1
set install_ripgrep=1 set install_ripgrep=1