-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_pime.bat
More file actions
23 lines (20 loc) · 970 Bytes
/
build_pime.bat
File metadata and controls
23 lines (20 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
REM ============================================================================
REM Script Name: [Script Name]
REM Description: This batch script performs automated tasks including:
REM - Disabling echo to keep output clean
REM - Setting up the environment for subsequent commands
REM - Preparing for execution of batch operations
REM
REM Notes:
REM - Requires Windows command prompt or compatible shell
REM - Must be run with appropriate permissions for intended operations
REM - Echo is disabled for cleaner output display
REM ============================================================================
echo * Build McTabIM for PIME
call npm run build:pime
echo * Delete old files
rmdir /S /Q "C:\Program Files (x86)\PIME\node\input_methods\mctabim"
echo * Copy new files
xcopy /E /I ".\output\pime" "C:\Program Files (x86)\PIME\node\input_methods\mctabim"
echo "Please restart PIME Launcher to see the changes."