rice

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

commit b9e4035c5faa3fae30958c900737c87d206dafe0
parent e8386eee494b4e3ae43305cf300dc90d66dc955f
Author: Mark Feller <mfeller@recurly.com>
Date:   Thu, 19 Dec 2019 15:14:31 -0700

dots repo

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

Diffstat:
Mpkgs/fedora/install | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pkgs/fedora/install b/pkgs/fedora/install @@ -1,6 +1,7 @@ #!/bin/sh set -e +dotsrepo=${dotfilesrepo:-"https://gitlab.com/mark.feller/rice.git"} pkgfile=${pkgfile:-"https://gitlab.com/mark.feller/rice/raw/master/pkgs/fedora/packages"} log() { @@ -22,7 +23,7 @@ EOF } install_dots() { - git clone https://gitlab.com/mark.feller/rice.git ~/.config/rice + git clone "$dotsrepo" ~/.config/rice (cd ~/.config/rice && ./install) }