Skip to content

Commit

Permalink
fix: rabbit's config might not be deployed
Browse files Browse the repository at this point in the history
If delete "rabbit.yaml" in staging dir but do no deployment, it will not
build "rabbit.yaml" again on startup.

Librime will include "rabbit.yaml" and "rabbit.custom.yaml" in partially
maintenance only if it's in staging dir.
  • Loading branch information
amorphobia committed Sep 21, 2024
1 parent 34fd014 commit cc8cd04
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Rabbit.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ RabbitMain(args) {
local first_run := !FileExist(RabbitUserDataPath() . "\default.custom.yaml")
|| !FileExist(RabbitUserDataPath() . "\rabbit.custom.yaml")
|| !FileExist(RabbitUserDataPath() . "\user.yaml")
|| !FileExist(RabbitUserDataPath() . "\installation.yaml")
|| !FileExist(RabbitUserDataPath() . "\build\rabbit.yaml") ; in staging dir

rabbit_traits := CreateTraits()
global rime
Expand Down

0 comments on commit cc8cd04

Please sign in to comment.