Fix bug with JOBS being set incorrectly

This commit is contained in:
Julian Ospald 2018-10-01 14:14:01 +08:00
parent 2e0501628b
commit 5dc42f08c1
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 1 additions and 1 deletions

2
ghcup
View File

@ -956,7 +956,7 @@ while [ $# -gt 0 ] ; do
-h|--help) install_usage;;
-f|--force) FORCE=true
shift 1;;
-j|--jobs) JOBS=$1
-j|--jobs) JOBS=$2
shift 2;;
*) GHC_VER=$1
break;;