Skip to content

Commit

Permalink
flipped sign
Browse files Browse the repository at this point in the history
  • Loading branch information
collinschwantes committed Sep 9, 2024
1 parent 25a4c84 commit cf08abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/dropbox_upload.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dropbox_upload <- function(log, file_path, dropbox_path,compress = TRUE) {
file_to_upload <- file_path

# check the file size
file_size_check <- (file.size(file_path)/10^6) < 300
file_size_check <- (file.size(file_path)/10^6) > 300

# if compress and file size is greater than 300 then zip it
if(all(compress,file_size_check)){
Expand Down

0 comments on commit cf08abe

Please sign in to comment.