Skip to content

Commit 391aec2

Browse files
committed
3.1.61.11pre
1 parent fe5bac3 commit 391aec2

File tree

4 files changed

+591
-126
lines changed

4 files changed

+591
-126
lines changed

python-wasi-sdk.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ which strip || cp /bin/true /usr/bin/strip
3434
pause () {
3535
if ${CI}
3636
then
37-
echo "$0:$LINENO"
37+
echo "$0:$1"
3838
else
39-
echo "<paused as $LINENO> press enter ..."
39+
echo "<paused at $1> press enter ..."
4040
read
4141
fi
4242
}
@@ -61,7 +61,7 @@ else
6161
export DISTRIB_ID=$($SYS_PYTHON -E -c "print(__import__('sysconfig').get_config_var('HOST_GNU_TYPE'))")
6262
export PLATFORM=$($SYS_PYTHON -E -c "print(__import__('sys').platform)")
6363
echo no /etc/lsb-release found, please identify platform $PLATFORM : \"${DISTRIB_ID}-${DISTRIB_RELEASE}\" or hit enter to continue
64-
pause
64+
pause $LINENO
6565
fi
6666
fi
6767

@@ -178,30 +178,30 @@ do
178178
cd ${SDKROOT}
179179
. scripts/cpython-fetch.sh
180180

181-
pause
181+
pause $LINENO
182182

183183
cd ${SDKROOT}
184184

185185
# generic wasm patchwork
186186
. support/__EMSCRIPTEN__.sh
187187

188-
pause
188+
pause $LINENO
189189

190190
. scripts/cpython-build-host.sh 2>&1 >/tmp/python-wasm-sdk.log
191191

192-
pause
192+
pause $LINENO
193193

194194
if [ -f $HPY ]
195195
then
196-
pause
196+
pause $LINENO
197197
else
198198
cat /tmp/python-wasm-sdk.log
199199
exit $LINENO
200200
fi
201201

202202
. scripts/cpython-build-host-deps.sh > /dev/null
203203

204-
pause
204+
pause $LINENO
205205

206206
fi
207207

python-wasm-sdk.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ which strip || cp /bin/true /usr/bin/strip
3434
pause () {
3535
if ${CI}
3636
then
37-
echo "$0:$LINENO"
37+
echo "$0:$1"
3838
else
39-
echo "<paused as $LINENO> press enter ..."
39+
echo "<paused at $1> press enter ..."
4040
read
4141
fi
4242
}
@@ -61,7 +61,7 @@ else
6161
export DISTRIB_ID=$($SYS_PYTHON -E -c "print(__import__('sysconfig').get_config_var('HOST_GNU_TYPE'))")
6262
export PLATFORM=$($SYS_PYTHON -E -c "print(__import__('sys').platform)")
6363
echo no /etc/lsb-release found, please identify platform $PLATFORM : \"${DISTRIB_ID}-${DISTRIB_RELEASE}\" or hit enter to continue
64-
pause
64+
pause $LINENO
6565
fi
6666
fi
6767

@@ -178,30 +178,30 @@ do
178178
cd ${SDKROOT}
179179
. scripts/cpython-fetch.sh
180180

181-
pause
181+
pause $LINENO
182182

183183
cd ${SDKROOT}
184184

185185
# generic wasm patchwork
186186
. support/__EMSCRIPTEN__.sh
187187

188-
pause
188+
pause $LINENO
189189

190190
. scripts/cpython-build-host.sh 2>&1 >/tmp/python-wasm-sdk.log
191191

192-
pause
192+
pause $LINENO
193193

194194
if [ -f $HPY ]
195195
then
196-
pause
196+
pause $LINENO
197197
else
198198
cat /tmp/python-wasm-sdk.log
199199
exit $LINENO
200200
fi
201201

202202
. scripts/cpython-build-host-deps.sh > /dev/null
203203

204-
pause
204+
pause $LINENO
205205

206206
fi
207207

0 commit comments

Comments
 (0)