diff options
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -301,7 +301,7 @@ add_binary() { binary=$BASEDIR$1 fi - [[ -f "$binary" ]] || { error "file not found: \`%s'" "$binary"; return 1; } + [[ -f "$binary" ]] || { error "file not found: \`%s'" "$1"; return 1; } dest=${2:-$binary} mode=$(stat -c %a "$binary") |