Commit 970c52e 1 parent e1b03dc commit 970c52e Copy full SHA for 970c52e
File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ $OUTDIR/sdists-repo/downloads/setuptools-*.tar.gz
39
39
$OUTDIR /sdists-repo/builds/setuptools-*.tar.gz
40
40
$OUTDIR /work-dir/setuptools-*/build.log
41
41
42
- $OUTDIR /wheels-repo/downloads/PySocks -*.whl
43
- $OUTDIR /sdists-repo/downloads/PySocks -*.tar.gz
44
- $OUTDIR /sdists-repo/builds/pysocks -*.tar.gz
42
+ $OUTDIR /wheels-repo/downloads/[Pp]y[sS]ocks -*.whl
43
+ $OUTDIR /sdists-repo/downloads/[Pp]y[sS]ocks -*.tar.gz
44
+ $OUTDIR /sdists-repo/builds/[Pp]y[sS]ocks -*.tar.gz
45
45
$OUTDIR /work-dir/pysocks-*/build.log
46
46
"
47
47
Original file line number Diff line number Diff line change @@ -25,14 +25,15 @@ PYVER=$(python3 -c 'import sys; print("%s%s" % sys.version_info[:2])')
25
25
EXTRACTDIR=" $OUTDIR /extract"
26
26
mkdir -p " $EXTRACTDIR "
27
27
28
- WHL=wheels-repo/downloads/${DIST} -${VERSION} -0-cp${PYVER} -cp${PYVER} -${WHEEL_PLATFORM_TAG} .whl
29
- unzip " $OUTDIR /$WHL " -d " $EXTRACTDIR "
28
+ MIXED_CASE_DIST=" [Mm]arkup[Ss]afe"
29
+ WHL=" wheels-repo/downloads/${MIXED_CASE_DIST} -${VERSION} -0-cp${PYVER} -cp${PYVER} -${WHEEL_PLATFORM_TAG} .whl"
30
+ unzip $OUTDIR /$WHL -d " $EXTRACTDIR "
30
31
31
- DIST_INFO=" extract/${DIST } -${VERSION} .dist-info"
32
+ DIST_INFO=" extract/${MIXED_CASE_DIST } -${VERSION} .dist-info"
32
33
33
34
EXPECTED_FILES="
34
35
$WHL
35
- sdists-repo/downloads/${DIST } -${VERSION} .tar.gz
36
+ sdists-repo/downloads/${MIXED_CASE_DIST } -${VERSION} .tar.gz
36
37
$DIST_INFO /fromager-build-backend-requirements.txt
37
38
$DIST_INFO /fromager-build-sdist-requirements.txt
38
39
$DIST_INFO /fromager-build-settings
48
49
49
50
pass=true
50
51
for f in $EXPECTED_FILES ; do
51
- if [ ! -f " $OUTDIR /$f " ]; then
52
+ if [ ! -f $OUTDIR /$f ]; then
52
53
echo " FAIL: Did not find $OUTDIR /$f " 1>&2
53
54
pass=false
54
55
fi
You can’t perform that action at this time.
0 commit comments