mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 07:20:59 +02:00
Use cksum instead of sha1sum for checksums (#54)
This provides better performance, but requires you to re-authenticate all files. Fixes https://github.com/Tarrasch/zsh-autoenv/issues/53.
This commit is contained in:
parent
448ceefd3a
commit
398b6f4f54
@ -173,15 +173,16 @@ _autoenv_debug() {
|
|||||||
# The format is ":$file:$hash:$version".
|
# The format is ":$file:$hash:$version".
|
||||||
_autoenv_hash_pair() {
|
_autoenv_hash_pair() {
|
||||||
local env_file=${1:A}
|
local env_file=${1:A}
|
||||||
local env_shasum=${2:-}
|
local env_cksum=${2:-}
|
||||||
if [[ -z $env_shasum ]]; then
|
if [[ -z $env_cksum ]]; then
|
||||||
if ! [[ -e $env_file ]]; then
|
if ! [[ -e $env_file ]]; then
|
||||||
echo "Missing file argument for _autoenv_hash_pair!" >&2
|
echo "Missing file argument for _autoenv_hash_pair!" >&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
env_shasum=$(sha1sum $env_file | cut -d' ' -f1)
|
# Get the output from `cksum` and join the first two words with a dot.
|
||||||
|
env_cksum=${(j:.:)${:-$(cksum "$env_file")}[1,2]}
|
||||||
fi
|
fi
|
||||||
echo ":${env_file}:${env_shasum}:1"
|
echo ":${env_file}:${env_cksum}:1"
|
||||||
}
|
}
|
||||||
|
|
||||||
_autoenv_authorized_env_file() {
|
_autoenv_authorized_env_file() {
|
||||||
|
@ -35,41 +35,41 @@ Now adding some auth pair.
|
|||||||
$ echo first > first
|
$ echo first > first
|
||||||
$ _autoenv_authorize first
|
$ _autoenv_authorize first
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:271ac93c44ac198d92e706c6d6f1d84aefcfa337:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:1 (glob)
|
||||||
|
|
||||||
And a second one.
|
And a second one.
|
||||||
|
|
||||||
$ echo second > second
|
$ echo second > second
|
||||||
$ _autoenv_authorize second
|
$ _autoenv_authorize second
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:271ac93c44ac198d92e706c6d6f1d84aefcfa337:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:7bee8f3b184e1e141ff76efe369c3b8bfc50e64c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:1 (glob)
|
||||||
|
|
||||||
And a third.
|
And a third.
|
||||||
|
|
||||||
$ echo third > third
|
$ echo third > third
|
||||||
$ _autoenv_authorize third
|
$ _autoenv_authorize third
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:271ac93c44ac198d92e706c6d6f1d84aefcfa337:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:7bee8f3b184e1e141ff76efe369c3b8bfc50e64c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:ad180453bf8a374a15df3e90a78c180230146a7c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:1 (glob)
|
||||||
|
|
||||||
Re-add the second one, with the same hash.
|
Re-add the second one, with the same hash.
|
||||||
|
|
||||||
$ _autoenv_authorize second
|
$ _autoenv_authorize second
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:271ac93c44ac198d92e706c6d6f1d84aefcfa337:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:ad180453bf8a374a15df3e90a78c180230146a7c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:7bee8f3b184e1e141ff76efe369c3b8bfc50e64c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:1 (glob)
|
||||||
|
|
||||||
Re-add the first one, with a new hash.
|
Re-add the first one, with a new hash.
|
||||||
|
|
||||||
$ echo one more line >> first
|
$ echo one more line >> first
|
||||||
$ _autoenv_authorize first
|
$ _autoenv_authorize first
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:ad180453bf8a374a15df3e90a78c180230146a7c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:7bee8f3b184e1e141ff76efe369c3b8bfc50e64c:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:1 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:65eb010197b73ddc109b7210080f97a87f53451e:1 (glob)
|
:/tmp/cramtests-*/_autoenv_utils.t/first:3620404822.20:1 (glob)
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user