Browse Source

Fixed subdir file path

expose_links
Drew Short 5 years ago
parent
commit
771cf438e4
  1. 4
      assets/out

4
assets/out

@ -52,8 +52,8 @@ fi
rclone_destination_subdir="" rclone_destination_subdir=""
if [ ! -z "$rclone_destination_subdir_file" ]; then if [ ! -z "$rclone_destination_subdir_file" ]; then
echo "Looking in ${source}/${rclone_destination_subdir} for subdir to use"
rclone_destination_subdir=$(cat "${source}/${rclone_destination_subdir}")
echo "Looking in ${source}/${rclone_destination_subdir_file} for subdir to use"
rclone_destination_subdir=$(cat "${source}/${rclone_destination_subdir_file}" | head -n 1)
fi fi
rclone_source="local:${source}/${rclone_source_directory}" rclone_source="local:${source}/${rclone_source_directory}"

Loading…
Cancel
Save