bitcoin-tools / bitcoin-tools/nodebuilder
[BUG] - possible bug when launching bitcoin-qt
Open
bug
- Dominant language
- Shell
- Stars
- 7
- Forks
- 0
- Avg merge
- 2h 37m
- Merged PRs (30d)
- 28
Description
### Expected Behavior
no syntax errors
### Actual Behavior
```
command -v bitcoin-qt > /dev/null 2>&1 &&
! is_running_in_ci
! is_running_in_container &&
```
Should it be this instead?
```
command -v bitcoin-qt > /dev/null 2>&1 &&
! is_running_in_ci &&
! is_running_in_container &&
```
### Steps to Reproduce
1.
2.
3.
### Optional Screenshots
_No response_
### Optional Logs
```text
```
### Operating System
_No response_
### Operating System version
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.