You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in local_dir.sh at line 365, add "-w" option to seq
replace : for jday in $(seq ${jday_start} ${jday_end}); do
with : for jday in $(seq -w ${jday_start} ${jday_end}); do
same at lines 341 and 342
declare -a jday_array_year1=$(seq -w ${jday_start} ${temp_end_jday})
declare -a jday_array_year2=$(seq -w 1 ${jday_end})
same issue in local_dir_availability.sh at lines 252, 253, 276
The text was updated successfully, but these errors were encountered:
in local_dir.sh at line 365, add "-w" option to seq$(seq $ {jday_start} ${jday_end}); do$(seq -w $ {jday_start} ${jday_end}); do
replace : for jday in
with : for jday in
same at lines 341 and 342
declare -a jday_array_year1=$(seq -w ${jday_start} ${temp_end_jday})
declare -a jday_array_year2=$(seq -w 1 ${jday_end})
same issue in local_dir_availability.sh at lines 252, 253, 276
The text was updated successfully, but these errors were encountered: