File tree Expand file tree Collapse file tree 4 files changed +591
-126
lines changed Expand file tree Collapse file tree 4 files changed +591
-126
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ which strip || cp /bin/true /usr/bin/strip
34
34
pause () {
35
35
if ${CI}
36
36
then
37
- echo " $0 :$LINENO "
37
+ echo " $0 :$1 "
38
38
else
39
- echo " <paused as $LINENO > press enter ..."
39
+ echo " <paused at $1 > press enter ..."
40
40
read
41
41
fi
42
42
}
61
61
export DISTRIB_ID=$( $SYS_PYTHON -E -c " print(__import__('sysconfig').get_config_var('HOST_GNU_TYPE'))" )
62
62
export PLATFORM=$( $SYS_PYTHON -E -c " print(__import__('sys').platform)" )
63
63
echo no /etc/lsb-release found, please identify platform $PLATFORM : \" ${DISTRIB_ID} -${DISTRIB_RELEASE} \" or hit enter to continue
64
- pause
64
+ pause $LINENO
65
65
fi
66
66
fi
67
67
178
178
cd ${SDKROOT}
179
179
. scripts/cpython-fetch.sh
180
180
181
- pause
181
+ pause $LINENO
182
182
183
183
cd ${SDKROOT}
184
184
185
185
# generic wasm patchwork
186
186
. support/__EMSCRIPTEN__.sh
187
187
188
- pause
188
+ pause $LINENO
189
189
190
190
. scripts/cpython-build-host.sh 2>&1 > /tmp/python-wasm-sdk.log
191
191
192
- pause
192
+ pause $LINENO
193
193
194
194
if [ -f $HPY ]
195
195
then
196
- pause
196
+ pause $LINENO
197
197
else
198
198
cat /tmp/python-wasm-sdk.log
199
199
exit $LINENO
200
200
fi
201
201
202
202
. scripts/cpython-build-host-deps.sh > /dev/null
203
203
204
- pause
204
+ pause $LINENO
205
205
206
206
fi
207
207
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ which strip || cp /bin/true /usr/bin/strip
34
34
pause () {
35
35
if ${CI}
36
36
then
37
- echo " $0 :$LINENO "
37
+ echo " $0 :$1 "
38
38
else
39
- echo " <paused as $LINENO > press enter ..."
39
+ echo " <paused at $1 > press enter ..."
40
40
read
41
41
fi
42
42
}
61
61
export DISTRIB_ID=$( $SYS_PYTHON -E -c " print(__import__('sysconfig').get_config_var('HOST_GNU_TYPE'))" )
62
62
export PLATFORM=$( $SYS_PYTHON -E -c " print(__import__('sys').platform)" )
63
63
echo no /etc/lsb-release found, please identify platform $PLATFORM : \" ${DISTRIB_ID} -${DISTRIB_RELEASE} \" or hit enter to continue
64
- pause
64
+ pause $LINENO
65
65
fi
66
66
fi
67
67
178
178
cd ${SDKROOT}
179
179
. scripts/cpython-fetch.sh
180
180
181
- pause
181
+ pause $LINENO
182
182
183
183
cd ${SDKROOT}
184
184
185
185
# generic wasm patchwork
186
186
. support/__EMSCRIPTEN__.sh
187
187
188
- pause
188
+ pause $LINENO
189
189
190
190
. scripts/cpython-build-host.sh 2>&1 > /tmp/python-wasm-sdk.log
191
191
192
- pause
192
+ pause $LINENO
193
193
194
194
if [ -f $HPY ]
195
195
then
196
- pause
196
+ pause $LINENO
197
197
else
198
198
cat /tmp/python-wasm-sdk.log
199
199
exit $LINENO
200
200
fi
201
201
202
202
. scripts/cpython-build-host-deps.sh > /dev/null
203
203
204
- pause
204
+ pause $LINENO
205
205
206
206
fi
207
207
You can’t perform that action at this time.
0 commit comments