Skip to content

Commit 80d4b56

Browse files
committed
修正 cp 在 Mac 上可能會無法正確 copy 的問題
* ~ 這個雖然意指使用者的 home 可能會出錯,使用 $HOME 確保這個路徑可以正 確被解譯
1 parent d09ca83 commit 80d4b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
case `uname -s` in
1010
"Darwin" )
1111
PLATFORM="mac"
12-
RIME_HOME="~/Library/Rime"
12+
RIME_HOME="$HOME/Library/Rime"
1313
;;
1414
"Linux" )
1515
PLATFORM="linux"

0 commit comments

Comments
 (0)