From d1c9e12739a546546c63ca208277720c23705747 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Fri, 23 Feb 2018 09:48:37 -0500 Subject: [PATCH] [provisioning] Remove redundant recipe --- recipes/path | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 recipes/path diff --git a/recipes/path b/recipes/path deleted file mode 100644 index a09962c..0000000 --- a/recipes/path +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set +e - -function _path_low { - PATH="$1:$PATH" - test -r ~/.bash_profile && echo "export PATH='$1'":'"$PATH"' >>~/.bash_profile - echo "export PATH='$1'":'"$PATH"' >>~/.profile -} - -function _path_high { - PATH="$PATH:$1" - test -r ~/.bash_profile && echo 'export PATH="$PATH"':"'$PATH'" >>~/.bash_profile - echo "export PATH='$1'":'"$PATH"' >>~/.profile -} - -function _path { - _path_low $@ -}