diff options
Diffstat (limited to '')
-rwxr-xr-x | import.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/import.sh b/import.sh index bd4909fb..fea18439 100755 --- a/import.sh +++ b/import.sh @@ -12,7 +12,7 @@ error() { [ -z "$1" ] && error 'no path' source_path="$HOME/$1" -dest_path="$PWD/$1" +dest_path="$PWD/curtis/$1" [ -f "$dest_path" ] && error "$dest_path already exists" [ -f "$source_path" ] || error "$source_path does not exist" |