1
0
Fork 0
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:
Steffen Vogel 2018-10-22 11:11:08 +01:00
parent 31cf7329e4
commit 4a90a18d73

View file

@ -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