Skip to content

Commit 59f17de

Browse files
authored
Merge pull request #134 from target/quotes
Standardize on " instead of ' in Brewfile
2 parents 8b233ea + 68b3d42 commit 59f17de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Brewfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# venerable build tool
44
# Follow caveats during installation to complete setup
5-
brew 'make' if OS.mac? # otherwise, assume we have GNU Make on Linux
5+
brew "make" if OS.mac? # otherwise, assume we have GNU Make on Linux
66
# Python version manager
77
# Follow caveats during installation to complete setup
88
brew "pyenv"
@@ -31,8 +31,8 @@ if OS.mac? && Hardware::CPU.arm?
3131
end
3232

3333
## PYTHON BUILD DEPENDENCIES
34-
py_version = open('.python-version').read.strip.split('.').take(2).join('.')
35-
brew "python@#{py_version}", args: ['only-dependencies']
34+
py_version = open(".python-version").read.strip.split(".").take(2).join(".")
35+
brew "python@#{py_version}", args: ["only-dependencies"]
3636
# PyEnv suggests installing these for building Python using
3737
# Homebrew-provided dependencies on Linux.
3838
# This exists here primarily for running in containers, such as

0 commit comments

Comments
 (0)