Skip to content

Commit 470abae

Browse files
authored
bug_report.md: Use set -x and use ; instead of &&
set -x shows the command in the output, making the output's respective command clearer. Using `;` rather than `&&` also runs the other commands even if one fails, for example if "jupyter-nbextension" is not found.
1 parent 5e068ed commit 470abae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In general, please make sure you are using the latest versions of software when
1717
Please include the result of the following command, which will print out the version of python, ipympl and the Jupyter ecosystem.
1818
1919
```bash
20-
python -c "import sys; print('\n',sys.version); import ipympl; print('ipympl version:', ipympl.__version__)" && jupyter --version && jupyter nbextension list && jupyter labextension list
20+
set -x ; python -c "import sys; print('\n',sys.version); import ipympl; print('ipympl version:', ipympl.__version__)" ; jupyter --version ; jupyter nbextension list ; jupyter labextension list
2121
```
2222
-->
2323
```

0 commit comments

Comments
 (0)