mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-06 17:15:38 -08:00
9 lines
312 B
Bash
Executable File
9 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d /workspaces/NetAlertX/.devcontainer ]; then
|
|
echo ---------------------------------------------------
|
|
echo "This script may only be run inside a devcontainer."
|
|
echo "Not in a devcontainer, exiting..."
|
|
echo ---------------------------------------------------
|
|
exit 255
|
|
fi
|