File tree Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ RUN set -x \
1515 && apt-key add Release.key \
1616 && add-apt-repository 'https://dl.winehq.org/wine-builds/ubuntu/' \
1717 && apt-get update -qy \
18- && apt-get install --no-install-recommends -qfy $WINE_VERSION winbind cabextract \
18+ && apt-get install --allow-unauthenticated -- no-install-recommends -qfy $WINE_VERSION winbind cabextract \
1919 && apt-get clean \
2020 && wget -nv https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
2121 && chmod +x winetricks \
@@ -36,9 +36,9 @@ ENV PYPI_INDEX_URL=https://pypi.python.org/simple
3636RUN set -x \
3737 && winetricks win7 \
3838 && for msifile in `echo core dev exe lib path pip tcltk tools`; do \
39- wget -nv "https://www.python.org/ftp/python/$PYTHON_VERSION/amd64/${msifile}.msi" ; \
40- wine msiexec /i "${msifile}.msi" /qb TARGETDIR=C:/Python36; \
41- rm ${msifile}.msi; \
39+ wget -nv "https://www.python.org/ftp/python/$PYTHON_VERSION/amd64/${msifile}.msi" ; \
40+ wine msiexec /i "${msifile}.msi" /qb TARGETDIR=C:/Python36; \
41+ rm ${msifile}.msi; \
4242 done \
4343 && cd /wine/drive_c/Python36 \
4444 && echo 'wine ' \' 'C:\P ython36\p ython.exe' \' ' "$@"' > /usr/bin/python \
Original file line number Diff line number Diff line change @@ -50,10 +50,7 @@ class Registers extends React.Component {
5050 }
5151 static cache_register_names ( names ) {
5252 // filter out non-empty names
53- store . set (
54- "register_names" ,
55- names . filter ( name => name )
56- ) ;
53+ store . set ( "register_names" , names . filter ( name => name ) ) ;
5754 }
5855 static clear_register_name_cache ( ) {
5956 store . set ( "register_names" , [ ] ) ;
Original file line number Diff line number Diff line change @@ -160,10 +160,7 @@ const process_gdb_response = function(response_array) {
160160 if ( "register-names" in r . payload ) {
161161 let names = r . payload [ "register-names" ] ;
162162 // filter out empty names
163- store . set (
164- "register_names" ,
165- names . filter ( name => name !== "" )
166- ) ;
163+ store . set ( "register_names" , names . filter ( name => name !== "" ) ) ;
167164 }
168165 if ( "register-values" in r . payload ) {
169166 store . set ( "previous_register_values" , store . get ( "current_register_values" ) ) ;
@@ -300,7 +297,9 @@ const process_gdb_response = function(response_array) {
300297
301298 if ( r . payload [ "signal-name" ] !== "SIGINT" ) {
302299 Actions . add_console_entries (
303- `gdbgui noticed a signal was received (${ r . payload [ "signal-meaning" ] } , ${ r . payload [ "signal-name" ] } ).` ,
300+ `gdbgui noticed a signal was received (${ r . payload [ "signal-meaning" ] } , ${
301+ r . payload [ "signal-name" ]
302+ } ).`,
304303 constants . console_entry_type . GDBGUI_OUTPUT
305304 ) ;
306305 Actions . add_console_entries (
Original file line number Diff line number Diff line change 1212 "Flask-Compress>=1.4.0, <2.0" , # to compress flask responses
1313 "Flask-SocketIO>=2.9, <3.0" , # websocket server
1414 "gevent>=1.2.2, <2.0" , # websocket handling
15- "gevent-websocket>=0.10.1, <0.11" , # also websocket
16- "eventlet>=0.25.0, <0.26" . # also websocket
15+ "gevent-websocket>=0.10.1, <0.11" , # also websocket
16+ "eventlet>=0.25.0, <0.26" , # also websocket
1717 "pygdbmi>=0.9.0.0, <1.0" , # parse gdb output
1818 "Pygments>=2.2.0, <3.0" , # syntax highlighting
1919]
You can’t perform that action at this time.
0 commit comments