mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-18 15:26:58 +00:00
fix
This commit is contained in:
parent
900717707b
commit
50b23c9739
44
src/commands/git_secret_cat.sh
Normal file
44
src/commands/git_secret_cat.sh
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
|
||||||
|
function cat {
|
||||||
|
local homedir=''
|
||||||
|
local passphrase=''
|
||||||
|
|
||||||
|
OPTIND=1
|
||||||
|
|
||||||
|
while getopts 'hd:p:' opt; do
|
||||||
|
case "$opt" in
|
||||||
|
h) _show_manual_for 'cat';;
|
||||||
|
|
||||||
|
p) passphrase=$OPTARG;;
|
||||||
|
|
||||||
|
d) homedir=$OPTARG;;
|
||||||
|
|
||||||
|
*) _invalid_option_for 'cat';;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
[ "$1" = '--' ] && shift
|
||||||
|
|
||||||
|
_user_required
|
||||||
|
|
||||||
|
# Command logic:
|
||||||
|
|
||||||
|
for line in "$@"
|
||||||
|
do
|
||||||
|
local filename
|
||||||
|
local path
|
||||||
|
|
||||||
|
filename=$(_get_record_filename "$line")
|
||||||
|
path=$(_append_root_path "$filename")
|
||||||
|
|
||||||
|
# The parameters are: filename, write-to-file, force, homedir, passphrase
|
||||||
|
_decrypt "$path" "0" "0" "$homedir" "$passphrase"
|
||||||
|
|
||||||
|
#if [[ "$?" ne "0" ]]; then
|
||||||
|
# _abort( "error decrypting $(filename): $?" )
|
||||||
|
#fi
|
||||||
|
done
|
||||||
|
}
|
@ -40,6 +40,7 @@ function teardown {
|
|||||||
# $output is the output from 'git secret cat' above
|
# $output is the output from 'git secret cat' above
|
||||||
[ "$FILE_CONTENTS" == "$output" ]
|
[ "$FILE_CONTENTS" == "$output" ]
|
||||||
|
|
||||||
|
touch "$FILE_TO_HIDE)"
|
||||||
rm "${FILE_TO_HIDE}2"
|
rm "${FILE_TO_HIDE}2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user