From f06e76405326ad7979ba5efe2408e89f802203b5 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 29 Aug 2017 21:12:35 +0200 Subject: adopt: Use stow wrapper script --- adopt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'adopt') diff --git a/adopt b/adopt index a0a210f..6789a6b 100755 --- a/adopt +++ b/adopt @@ -1,5 +1,6 @@ #!/bin/sh DOTFILES_DIR=$(dirname $(readlink -f $0)) +STOW="$DOTFILES_DIR/stow" if [ "$#" -lt 2 ] then @@ -15,7 +16,7 @@ then mkdir -p $TARGET fi mv $2/* $TARGET - ./stow $1 + $STOW $1 elif [ -f $2 ] then TARGET="$DOTFILES_DIR/$1/$(dirname $2)" @@ -24,5 +25,5 @@ then mkdir -p $TARGET fi mv $2 $TARGET - ./stow $1 + $STOW $1 fi -- cgit 1.4.1