pass in suite from outside
This commit is contained in:
parent
4232245c1c
commit
2970833df5
1 changed files with 6 additions and 1 deletions
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Nico Schottelius, 2019-12-09
|
# Nico Schottelius, 2019-12-09
|
||||||
|
|
||||||
|
if [ $# -ne 1 ]; then
|
||||||
|
echo $0 suite
|
||||||
|
echo suite is for instance ascii, beowulf, etc
|
||||||
|
fi
|
||||||
|
|
||||||
|
suite=$1; shift
|
||||||
|
|
||||||
date=$(date +%F)
|
date=$(date +%F)
|
||||||
suite=ascii
|
|
||||||
|
|
||||||
dir=${suite}-${date}
|
dir=${suite}-${date}
|
||||||
kernel=${dir}-kernel
|
kernel=${dir}-kernel
|
||||||
|
|
Loading…
Reference in a new issue