Skip to content

Commit a8bfbd8

Browse files
committed
add empty lines
1 parent f0757c8 commit a8bfbd8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

scripts/build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
#!/bin/sh
2+
23
# This script builds wheels for the API, SDK, and extension packages in the
34
# dist/ dir, to be uploaded to PyPI.
5+
46
set -ev
7+
58
# Get the latest versions of packaging tools
69
python3 -m pip install --upgrade pip build setuptools wheel
10+
711
BASEDIR=$(dirname "$(readlink -f "$(dirname $0)")")
812
DISTDIR=dist
13+
914
(
1015
cd $BASEDIR
1116
mkdir -p $DISTDIR
1217
rm -rf ${DISTDIR:?}/*
18+
1319
for d in exporter/*/ opentelemetry-instrumentation/ opentelemetry-contrib-instrumentations/ opentelemetry-distro/ instrumentation/*/ processor/*/ propagator/*/ resource/*/ sdk-extension/*/ util/*/ ; do
1420
(
1521
echo "building $d"
@@ -21,6 +27,7 @@ DISTDIR=dist
2127
fi
2228
)
2329
done
30+
2431
(
2532
cd $DISTDIR
2633
for x in * ; do

0 commit comments

Comments
 (0)