Removed temporary file generation

This commit is contained in:
Brock A. Martin 2016-07-23 13:05:59 -05:00
parent d48e5707c3
commit cf04e7a8a4

View file

@ -33,15 +33,6 @@ if [ $# -lt 1 ]; then
exit 1 exit 1
fi fi
# Create a temp file to use as a pattern for splitting the input key file.
# This helps protect against file collisions in the current directory.
export TMPDIR=""
tmp_file=$(mktemp keyparts.XXXXXX)
if [ $? -ne 0 ]; then
echo "failed to create temporary file"
exit 1
fi
# For each image on the command line, decode it into text # For each image on the command line, decode it into text
chunks=() chunks=()
index=1 index=1