File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,16 +32,16 @@ DISTDIR=dist
3232 cd $DISTDIR
3333 for x in * ; do
3434 # FIXME: Remove this logic once these packages are available in Pypi
35- if ( echo " $x " | grep -Eq ^opentelemetry_(instrumentation_aiohttp_server| resource_detector_container).* (\. tar\. gz| \. whl)$) ; then
35+ if echo " $x " | grep -Eq ^opentelemetry_(instrumentation_aiohttp_server| resource_detector_container).* (\. tar\. gz| \. whl)$; then
3636 echo " Skipping $x because of erroneous uploads. See: https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2053"
3737 rm $x
3838 # FIXME: Remove this once opentelemetry-resource-detector-azure package goes 1.X
39- elif ( echo " $x " | grep -Eq ^opentelemetry_resource_detector_azure.* (\. tar\. gz| \. whl)$) ; then
39+ elif echo " $x " | grep -Eq ^opentelemetry_resource_detector_azure.* (\. tar\. gz| \. whl)$; then
4040 echo " Skipping $x because of manual upload by Azure maintainers."
4141 rm $x
4242 # NOTE: We filter beta vs 1.0 package at this point because we can read the
4343 # version directly from the .tar.gz/whl file
44- elif ( echo " $x " | grep -Eq ^opentelemetry_.* -0\. .* (\. tar\. gz| \. whl)$) ; then
44+ elif echo " $x " | grep -Eq ^opentelemetry_.* -0\. .* (\. tar\. gz| \. whl)$; then
4545 :
4646 else
4747 echo " Skipping $x because it is not in pre-1.0 state and should be released using a tag."
You can’t perform that action at this time.
0 commit comments