From a1f1e4cbb522a162e490c617f13e8e45cc10c0b2 Mon Sep 17 00:00:00 2001 From: dig Date: Fri, 29 Jun 2018 15:39:12 +0200 Subject: [PATCH] Correct typo, bad copy/paste --- awesome-tasks/.odoo/download | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/awesome-tasks/.odoo/download b/awesome-tasks/.odoo/download index a5e54d0..261a0b8 100644 --- a/awesome-tasks/.odoo/download +++ b/awesome-tasks/.odoo/download @@ -73,14 +73,14 @@ fi __dirname="$(dirname $0)" __dirtask="$__dirname/.$(basename $0)" -# Calls command (1rt argument) as script or function \$1( \$2 \$3 ... ) +# Calls command (1rt argument) as script or function $1( $2 $3 ... ) if [ -r "$__dirtask/$1" ] - verbose "Command file exists call it: \$__dirtask/\$1 \${*:2}" - \$__dirtask/\$1 \${*:2} + verbose "Command file exists call it: $__dirtask/$1 ${*:2}" + $__dirtask/$1 ${*:2} else if [ -n "$(type -t $1)" ] && [ "$(type -t $1)" = function ]; then - verbose "\$__dirtask/\$1 not exists try func: \$1 \${*:2}" - \$1 "\${*:2}" + verbose "$__dirtask/$1 not exists try func: $1 ${*:2}" + $1 "${*:2}" fi fi \ No newline at end of file