Skip to content

Commit

Permalink
Fix atomism
Browse files Browse the repository at this point in the history
  • Loading branch information
apdibbo committed Nov 1, 2023
1 parent ce05bf0 commit d0be537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenStack-accounting/usr/local/sbin/past-accounting.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endtime=$startdate
starttime=`date -d "$startdate" +"%Y-%m-%d %H:%M"`
endtimeepoch=`date -d "$endtime" +%s`

while [][ $endtimeepoch -lt $enddateepoch ]];
while [[ $endtimeepoch -lt $enddateepoch ]];
do
starttime=`date -d "$starttime" +"%Y-%m-%d %H:%M"`
starttimeepoch=`date -d "$starttime" +%s`
Expand Down

0 comments on commit d0be537

Please sign in to comment.