mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
compatability fixes in shell script
This commit is contained in:
parent
31cf7329e4
commit
4a90a18d73
1 changed files with 4 additions and 5 deletions
|
@ -25,10 +25,9 @@
|
|||
function villas_format_supports_vectorize() {
|
||||
local FORMAT=$1
|
||||
|
||||
case $FORMAT in
|
||||
raw.*) ;&
|
||||
gtnet) ;&
|
||||
gtnet.fake) return 1 ;;
|
||||
case ${FORMAT} in
|
||||
raw*) return 1 ;;
|
||||
gtnet*) return 1 ;;
|
||||
esac
|
||||
|
||||
return 0
|
||||
|
@ -38,7 +37,7 @@ function villas_format_supports_header() {
|
|||
local FORMAT=$1
|
||||
|
||||
case $FORMAT in
|
||||
raw-*) ;&
|
||||
raw*) return 1 ;;
|
||||
gtnet) return 1 ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue