Skip to content

Commit 21ff445

Browse files
authored
Adding brew auto update flag
closes #36
1 parent f3019d2 commit 21ff445

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

installer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ def ins(self):
4949
# MacOS Dependency Config
5050
elif platform == "darwin":
5151

52-
print("\n[+] Installing necessary tools on MAC")
52+
print("\n[+] Installing necessary tools on MacOS/Darwin")
5353
try:
5454
os.system('brew cask install xquartz')
55+
os.system('export HOMEBREW_NO_AUTO_UPDATE=1') # Set auto update of homebrew to false for this session
5556
os.system('brew install toilet')
5657
print("\n[+] Installation of dependencies complete")
5758
except OSError:

0 commit comments

Comments
 (0)