Skip to content

Commit

Permalink
Appease Standardrb with 0644 -> 0o644 for octal literal
Browse files Browse the repository at this point in the history
  • Loading branch information
moseshll committed May 6, 2024
1 parent bfd7817 commit 69d921a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/generate_hathifile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run_file(zephir_file)
Services[:logger].info "Moving tempfile #{gzfile} -> #{outfile}"
FileUtils.mv(gzfile, outfile)
Services[:logger].info "Setting 0644 permissions on #{outfile}"
FileUtils.chmod(0644, outfile)
FileUtils.chmod(0o644, outfile)
end
fin.close
end
Expand Down

0 comments on commit 69d921a

Please sign in to comment.