Merge "Reproducer don't fail if workspace path doesn't exist yet"
This commit is contained in:
commit
67ff889519
@ -77,7 +77,8 @@ while [ "x$1" != "x" ]; do
|
||||
|
||||
case "$1" in
|
||||
--workspace|-w)
|
||||
WORKSPACE=$(realpath $2)
|
||||
# realpath fails if /some/path doesn't exist. It is created l8r
|
||||
WORKSPACE=$(realpath $2 || echo -n $2)
|
||||
shift
|
||||
;;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user