Skip to content
Snippets Groups Projects

Make view12/14/15 parallel (one slice per job)

Merged Wouter Deconinck requested to merge view14-parallel into master
3 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -49,13 +49,13 @@ do
shift # past value
;;
-[a-zA-Z]*) # unknown option
#POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+=("$1") # save it in an array for later
echo "unknown option $1"
print_the_help
shift # past argument
;;
*) # positional options
#POSITIONAL+=("$1") # save it in an array for later
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
Loading