commit c98daf302214e6229938ca99b1c298250646a536
parent 8ae285891b58aed922d89da52979f5c16de95996
Author: Mark Feller <mfeller@recurly.com>
Date: Thu, 19 Dec 2019 15:31:43 -0700
force install
Signed-off-by: Mark Feller <mfeller@recurly.com>
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/README b/README
@@ -5,3 +5,5 @@ $ cd pkgs && ./install
Install dot files into $HOME using GNU Stow.
$ ./install
+
+$ curl https://gitlab.com/mark.feller/rice/raw/master/pkgs/macos/install | sh+
\ No newline at end of file
diff --git a/pkgs/macos/install b/pkgs/macos/install
@@ -15,7 +15,7 @@ install_packages() {
packages=$(sed '/^$/d' /tmp/pkgs | sed '/^#/d')
while IFS=' ' read -r program comment; do
- brew install $program
+ brew install --force $program
done <<EOF
$packages
EOF