From 65ee1457eb209ad4e872a6bc6cf97c78409fff11 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 26 Oct 2021 09:24:06 -0700 Subject: [PATCH] Move install helper into custom helpers fix liter errors --- helpers/custom | 29 ++++++++++++++++++++--------- mac-setup | 7 ------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/helpers/custom b/helpers/custom index acd81cf..2bb56f6 100644 --- a/helpers/custom +++ b/helpers/custom @@ -4,6 +4,7 @@ # Add your custom helpers here. Remember, this is just Bash! ############################################################################## +# Init all paths and make sure the directories exist function init_paths_and_vars { # Directory for projects WORKSPACE="$HOME/workspace" @@ -16,25 +17,27 @@ function init_paths_and_vars { # Temp dir for downloads TMP_DIR="$PROJECT_DIR/tmp" # System uname - UNAME_STR=`uname` + UNAME_STR=$(uname) # XGD_DATA XDG_DATA_HOME="$HOME/.local/share" # XGD_CONFIG XDG_CONFIG_HOME="$HOME/.config" # Create workspace dir - mkdir -p $WORKSPACE - mkdir -p $USER_BIN - mkdir -p $LOCAL_PREFIX - mkdir -p $LOCAL_BIN - mkdir -p $TMP_DIR - mkdir -p $XDG_DATA_HOME - mkdir -p $XDG_CONFIG_HOME + mkdir -p "$WORKSPACE" + mkdir -p "$USER_BIN" + mkdir -p "$LOCAL_PREFIX" + mkdir -p "$LOCAL_BIN" + mkdir -p "$TMP_DIR" + mkdir -p "$XDG_DATA_HOME" + mkdir -p "$XDG_CONFIG_HOME" } +# Create a dotfile and source a synced version function source_dotfile { local RC_PATH=$1 - local RC_NAME=`basename $1` + local RC_NAME="" + RC_NAME=$(basename "$1") local SOURCE_CMD="source" # If a source command was passed in, we can use that @@ -51,3 +54,11 @@ function source_dotfile { add_line "#import $RC_NAME from synced" "$HOME/.$RC_NAME" add_line "$SOURCE_CMD ~/.${RC_NAME}_sync" "$HOME/.$RC_NAME" } + +# Check if a recipe is installed, if not install it and mark it installed +function install() { + if ! is_installed "$1" ; then + recipe "$1" + set_installed "$1" + fi +} diff --git a/mac-setup b/mac-setup index 95dd3c9..6083c91 100755 --- a/mac-setup +++ b/mac-setup @@ -14,13 +14,6 @@ export PROJECT_DIR init_paths_and_vars -function install() { - if ! is_installed "$1" ; then - recipe "$1" - set_installed "$1" - fi -} - install "macports" install "generate_ssh_keys" install "finicky"