rice

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1866752916c6a8a32421cd17cec1aaf02794c853
parent 583c3d5c8e5fedd1af4ddf5c22ef5e752491a84f
Author: Mark Feller <mfeller@recurly.com>
Date:   Thu, 19 Dec 2019 15:57:14 -0700

comments and logs

Signed-off-by: Mark Feller <mfeller@recurly.com>

Diffstat:
Mpkgs/macos/install | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pkgs/macos/install b/pkgs/macos/install @@ -10,7 +10,7 @@ log() { } install_packages() { - # Copy a real file to our temp progsfile or attempt to curl the progsfile + # Copy a real file to our temp pkgfile or attempt to curl the pkgfile ([ -f "$pkgfile" ] && cp "$pkgfile" /tmp/pkgs) || curl -Ls "$pkgfile" > /tmp/pkgs packages=$(sed '/^$/d' /tmp/pkgs | sed '/^#/d') @@ -22,7 +22,7 @@ EOF } install_dots() { - git clone "$dotsrepo" ~/.config/rice + git clone "$dotsrepo" ~/.config/rice || log "Dots have already been clone" (cd ~/.config/rice && ./install) }