Skip to content

Commit

Permalink
[Update] 自動保存条件にハッシュ値を使用するよう変更
Browse files Browse the repository at this point in the history
  • Loading branch information
omonomo committed Feb 17, 2025
1 parent 244ac68 commit 2ecadab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions font_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ while (i < SizeOf(input_list))
Print("Move box drawing and block")
Select(0u2500, 0u259f)
Move(0, ${move_y_em_revise} - 61)
SetWidth(${width_latin})
Print("Edit numbers")
# 4 (横棒を突き抜けさせる)
Expand Down Expand Up @@ -5623,8 +5624,8 @@ if [ "${patch_only_flag}" = "false" ]; then

# 下書きモード以外で font_generator に変更が無く、すでにパッチ前フォントが作成されていた場合それを呼び出す
if [ "${draft_flag}" = "false" ]; then
output_data=$(echo $(wc -c font_generator.sh) | cut -d ' ' -f 1)"-"$(date -r font_generator.sh "+%Y%m%d-%H%M%S")
output_data=${output_data}"_"$(echo $(wc -c "${settings}.txt") | cut -d ' ' -f 1)"-"$(date -r "${settings}.txt" "+%Y%m%d-%H%M%S")
output_data=$(sha256sum font_generator.sh | cut -d ' ' -f 1)
output_data=${output_data}"_"$(sha256sum font_generator.sh | cut -d ' ' -f 1)
if [ "${nerd_flag}" = "false" ]; then
nopatchsetdir_name="e"
fi
Expand Down

0 comments on commit 2ecadab

Please sign in to comment.