aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Reiter2016-10-14 20:01:35 +0200
committerMarkus Reiter2016-10-23 14:13:16 +0200
commit40b7e36746f679c41f97e627f2af0e898963925b (patch)
tree8384b8275c7d3b72923cd7c03c584059ad26d670
parent13e3272e37d18f0ad3a6273519958bcada30dbbb (diff)
downloadbrew-40b7e36746f679c41f97e627f2af0e898963925b.tar.bz2
Use `0`-only prefix for octal numbers.
-rw-r--r--Library/Homebrew/cask/lib/hbc/pkg.rb2
-rw-r--r--Library/Homebrew/cask/test/cask/pkg_test.rb4
2 files changed, 3 insertions, 3 deletions
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
diff --git a/Library/Homebrew/cask/test/cask/pkg_test.rb b/Library/Homebrew/cask/test/cask/pkg_test.rb
index 5734a58f6..85a42356e 100644
--- a/Library/Homebrew/cask/test/cask/pkg_test.rb
+++ b/Library/Homebrew/cask/test/cask/pkg_test.rb
@@ -75,7 +75,7 @@ describe Hbc::Pkg do
fake_file = fake_dir.join("ima_installed_file").tap { |path| FileUtils.touch(path) }
- fake_dir.chmod(0o000)
+ fake_dir.chmod(0000)
pkg.stubs(:pkgutil_bom_specials).returns([])
pkg.stubs(:pkgutil_bom_files).returns([fake_file])
@@ -88,7 +88,7 @@ describe Hbc::Pkg do
fake_dir.must_be :directory?
fake_file.wont_be :file?
- (fake_dir.stat.mode % 0o1000).to_s(8).must_equal "0"
+ (fake_dir.stat.mode % 01000).to_s(8).must_equal "0"
end
end
end