From 40b7e36746f679c41f97e627f2af0e898963925b Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Fri, 14 Oct 2016 20:01:35 +0200 Subject: Use `0`-only prefix for octal numbers. --- Library/Homebrew/cask/lib/hbc/pkg.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Homebrew/cask/lib') diff --git a/Library/Homebrew/cask/lib/hbc/pkg.rb b/Library/Homebrew/cask/lib/hbc/pkg.rb index 7f187c9de..7d4a9251a 100644 --- a/Library/Homebrew/cask/lib/hbc/pkg.rb +++ b/Library/Homebrew/cask/lib/hbc/pkg.rb @@ -76,7 +76,7 @@ module Hbc end def _with_full_permissions(path) - original_mode = (path.stat.mode % 0o1000).to_s(8) + original_mode = (path.stat.mode % 01000).to_s(8) # TODO: similarly read and restore macOS flags (cf man chflags) @command.run!("/bin/chmod", args: ["--", "777", path], sudo: true) yield -- cgit v1.2.3