From 818240cb6a5d3a2117dceb2c78d6601e7ff6311d Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Tue, 14 Apr 2020 17:46:56 +0200 Subject: [PATCH] error in handling option --overlay= fixed, typo fixed --- Pmodules/modbuild.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Pmodules/modbuild.in b/Pmodules/modbuild.in index 7aa5805..6f8cca8 100755 --- a/Pmodules/modbuild.in +++ b/Pmodules/modbuild.in @@ -119,7 +119,7 @@ MISCELLANEOUS OPTIONS: remove all files created during building. --distdir - Directory wwhere to store and lookup downloaded files. + Directory where to store and lookup downloaded files. --tmpdir Directory used for building a module. @@ -255,7 +255,8 @@ parse_args() { overlay=$2 ;; --overlay=* ) - overlay=${1*=} + overlay=${1/*=} + ;; -- ) : ;;