Skip to content

Commit 4a3a79d

Browse files
committed
restore - we're actually using FILESYSTEM_PATH
1 parent bad5057 commit 4a3a79d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/usr/local/bin/restore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fi
7777
get_filename() {
7878
COLUMNS=12
7979
prompt="Please select a file to restore:"
80-
options=( $(find "${DEFAULT_BACKUP_PATH}" -type f -maxdepth 2 -not -name '*.md5' -not -name '*.sha1' -print0 | sort -z | xargs -0) )
80+
options=( $(find "${DEFAULT_FILESYSTEM_PATH}" -type f -maxdepth 2 -not -name '*.md5' -not -name '*.sha1' -print0 | sort -z | xargs -0) )
8181
PS3="$prompt "
8282
select opt in "${options[@]}" "Custom" "Quit" ; do
8383
if (( REPLY == 2 + ${#options[@]} )) ; then

0 commit comments

Comments
 (0)