We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d794a8 commit d2acfc4Copy full SHA for d2acfc4
install/usr/local/bin/restore
@@ -83,7 +83,7 @@ control_c() {
83
get_filename() {
84
COLUMNS=12
85
prompt="Please select a file to restore:"
86
- options=( $(find "${DEFAULT_FILESYSTEM_PATH}" -type f -maxdepth 2 -not -name '*.md5' -not -name '*.sha1' -print0 | sort -z | xargs -0) )
+ options=( $(find "${DEFAULT_FILESYSTEM_PATH}" -type f -maxdepth 2 -not -name '*.md5' -not -name '*.sha1' -not -name '*.gpg' -print0 | sort -z | xargs -0) )
87
PS3="$prompt "
88
select opt in "${options[@]}" "Custom" "Quit" ; do
89
if (( REPLY == 2 + ${#options[@]} )) ; then
0 commit comments