Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andreineculau authored Aug 23, 2024
1 parent 0a151cf commit e4c700a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions transcrypt
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ is_salt_prefix_workaround_required() {

# source https://stackoverflow.com/a/42828523/465684
hex2string() {
local I=0
while [ $I -lt ${#1} ]; do
echo -en "\x"${1:$I:2}
let "I += 2"
done
local I=0
while [ $I -lt ${#1} ]; do
echo -en "\x"${1:$I:2}
let "I += 2"
done
}

# The `decryption -> encryption` process on an unchanged file must be
Expand Down

0 comments on commit e4c700a

Please sign in to comment.