From 68402f98ce691e068b8719cf0562dc407a04fd0e Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 15 May 2022 01:28:39 -0700 Subject: [PATCH] dotfiles: oops, should have made it a script --- .config/shell/bin/dotfiles | 4 ++++ .config/shell/functions/dotfiles | 6 ------ 2 files changed, 4 insertions(+), 6 deletions(-) create mode 100755 .config/shell/bin/dotfiles delete mode 100644 .config/shell/functions/dotfiles diff --git a/.config/shell/bin/dotfiles b/.config/shell/bin/dotfiles new file mode 100755 index 0000000..2096ad7 --- /dev/null +++ b/.config/shell/bin/dotfiles @@ -0,0 +1,4 @@ +#!/bin/bash +# This is a copy of the 'dot' alias for use in other functions + +git --git-dir="$HOME/git/dotfiles" --work-tree="$HOME" "$@" diff --git a/.config/shell/functions/dotfiles b/.config/shell/functions/dotfiles deleted file mode 100644 index 1cdf059..0000000 --- a/.config/shell/functions/dotfiles +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -# This is a copy of the 'dot' alias, as a function, for use in other functions - -dotfiles() { - git --git-dir="$HOME/git/dotfiles" --work-tree="$HOME" -}