We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f92456 commit e1e03c7Copy full SHA for e1e03c7
testing.sh
@@ -7,5 +7,9 @@ for cwl in v1.0/*.cwl; do echo ${cwl}; cwl-upgrader ${cwl} > v1.1/${cwl##v1.0/};
7
cp conformance_test_v1.0.yaml conformance_test_v1.0_to_v1_1.yaml
8
sed -i 's=v1.0/=v1.1/=g' conformance_test_v1.0_to_v1_1.yaml
9
cwltest --test conformance_test_v1.0_to_v1_1.yaml --tool cwltool -j$(nproc)
10
-if (find v1.1/ -type f | xargs grep cwlVersion | grep v1.0) ; then false; else true; fi
+if
11
+ find v1.1/ -type f | xargs grep cwlVersion | grep -v basename-fields-job.yml | grep v1.0
12
+then false
13
+else true
14
+fi
15
0 commit comments