Skip to content

Commit

Permalink
feat: cache generation failed when installing modules
Browse files Browse the repository at this point in the history
安装modules时, 因为缓存文件已存在, 创建目录会失败
  • Loading branch information
myml committed Dec 20, 2024
1 parent dda4cb3 commit a55d892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/libexec/linglong/font-cache-generator
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ font_conf_generator()
local font_conf_prefix="$1/fonts"
local font_conf="${font_conf_prefix}/fonts.conf"
local app_id=$2
mkdir ${font_conf_prefix}
mkdir ${font_conf_prefix} || true

cat << EOF > ${font_conf}
<?xml version="1.0"?>
Expand Down

0 comments on commit a55d892

Please sign in to comment.