From 8aeb11136cdc3635d976964f7fd2cb95313098ea Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sun, 17 Jun 2018 11:22:22 +0200 Subject: [PATCH] use default config file value --- dotdrop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop.sh b/dotdrop.sh index 50d17c0..8dac199 100755 --- a/dotdrop.sh +++ b/dotdrop.sh @@ -26,6 +26,6 @@ cd "${cur}" || { echo "Directory \"${cur}\" doesn't exist, aborting." && exit; } # init/update the submodule git submodule update --init --recursive # launch dotdrop -PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop --cfg="${cfg}" "${args[@]}" +PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop "${args[@]}" # pivot back cd "${opwd}" || { echo "Directory \"${opwd}\" doesn't exist, aborting." && exit; }