Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve Lint Issues Flagged by GitHub Actions #14

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/worker/pe_scripts/runPeAlerts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

cd /app/pe-reports
cd /app/pe-reports || return

pe-source cybersixgill --cybersix-methods=alerts --soc_med_included
1 change: 1 addition & 0 deletions backend/worker/worker-entry.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# Sets up an explicit proxy using mitmproxy.

set -e
Expand Down
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

docker-compose down --volumes --rmi all
cd backend && npm run build-worker && cd .. && npm start
cd backend && npm run syncdb && npm run syncdb -- -d populate
2 changes: 2 additions & 0 deletions rebuild.sh
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#!/bin/bash

docker-compose up -d --build
1 change: 1 addition & 0 deletions setup-matomo.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# Fixes the trusted_hosts issue to allow Matomo to run on a custom port locally, as
# a workaround for https://github.com/matomo-org/matomo/issues/9549.
# Run this after initially setting up Matomo through the UI.
Expand Down
Loading