We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c3bcac commit 0f8bce3Copy full SHA for 0f8bce3
1 file changed
Justfile
@@ -120,10 +120,10 @@ container-sign:
120
121
# Run panic-attack static analysis
122
panic-scan:
123
- @if [ -x "/var/mnt/eclipse/repos/panic-attacker/target/release/panic-attack" ]; then \
124
- /var/mnt/eclipse/repos/panic-attacker/target/release/panic-attack assail . --verbose; \
+ @if command -v panic-attack >/dev/null 2>&1; then \
+ panic-attack assail . --verbose; \
125
else \
126
- echo "panic-attack not built — run 'cd /var/mnt/eclipse/repos/panic-attacker && cargo build --release'"; \
+ echo "panic-attack not found — install from https://github.com/hyperpolymath/panic-attacker"; \
127
fi
128
129
# Run hypatia neurosymbolic scan
0 commit comments