Skip to content

Commit fba2077

Browse files
authored
release: Skip containerid again (#3557)
* skip containerid again Signed-off-by: emdneto <[email protected]> * add empty lines --------- Signed-off-by: emdneto <[email protected]>
1 parent 012ddc8 commit fba2077

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ DISTDIR=dist
3131
(
3232
cd $DISTDIR
3333
for x in * ; do
34+
# FIXME: Remove this logic once these packages are available in Pypi
35+
if echo "$x" | grep -Eq "^opentelemetry_resource_detector_containerid.*(\.tar\.gz|\.whl)$"; then
36+
echo "Skipping $x because of erroneous uploads. See: https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2053"
37+
rm $x
3438
# FIXME: Remove this once opentelemetry-resource-detector-azure package goes 1.X
35-
if 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
3640
echo "Skipping $x because of manual upload by Azure maintainers."
3741
rm $x
3842
# NOTE: We filter beta vs 1.0 package at this point because we can read the

0 commit comments

Comments
 (0)