Skip to content

Commit

Permalink
Fix bundle note editor script hash file check
Browse files Browse the repository at this point in the history
  • Loading branch information
mvasilak committed Aug 30, 2024
1 parent fe47937 commit b388ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bundle_note_editor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ HASH_FILE="$EDITOR_DIR/note_editor_hash.txt"
CURRENT_HASH=`git ls-tree --object-only HEAD "$EDITOR_SUBMODULE_DIR"`

if [ -d "$EDITOR_DIR" ]; then
if [ -d "$HASH_FILE" ]; then
if [ -f "$HASH_FILE" ]; then
CACHED_HASH=`cat "$HASH_FILE"`
else
CACHED_HASH=0
Expand Down

0 comments on commit b388ec0

Please sign in to comment.