forked from rime/weasel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update output/rime-install-config.bat
- Loading branch information
Showing
2 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
rem for downloading Git for Windows installer | ||
set git_mirror=taobao | ||
rem Location of download cache | ||
rem set download_cache_dir=%TEMP% | ||
|
||
rem Do not update packages; only download missing files. | ||
rem CAUTION: may suffer from incomplete downloads. | ||
rem set no_update=1 | ||
|
||
rem Rime configuration manager and downloaded packages | ||
set plum_dir=%APPDATA%\plum | ||
set plum_dir=%APPDATA%\plum | ||
|
||
rem Location of Rime user directory | ||
rem set rime_dir=%APPDATA%\Rime | ||
|
||
set key=HKEY_CURRENT_USER\SOFTWARE\Rime\Weasel | ||
set name=RimeUserDir | ||
for /f "tokens=2*" %%a in ('reg query "%key%" /v "%name%"') do set rime_dir=%%b | ||
|
||
rem Disable /plum/ bash script; use batch installer only. | ||
rem set use_plum=0 |