From 6e2e382388877657f60deb34d53d201a55489cc2 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sun, 28 Jan 2024 10:07:17 -0500 Subject: [PATCH] refactor: rename for clarity, bootstrap v. install --- README.md | 4 ++-- install.sh => bootstrap.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename install.sh => bootstrap.sh (100%) diff --git a/README.md b/README.md index 22b9d64..72fbb97 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Environment tweaks for everyday happiness. ## Setup ```bash -git clone git@github.com:mcataford/env.git | . ./install.sh +git clone git@github.com:mcataford/env.git | . ./bootstrap.sh ``` The setup script will look for pre-existing managed blocks and will not update the file if one is found. @@ -22,7 +22,7 @@ The package is structured as such: ``` env/ - install.sh # Adds bootstrap block to your shell's config file. + bootstrap.sh # Adds bootstrap block to your shell's config file. shell_extras # Functions, aliases and exports for the shell. extras.vim # Common config for NVIM. ``` diff --git a/install.sh b/bootstrap.sh similarity index 100% rename from install.sh rename to bootstrap.sh