9 lines
248 B
Bash
Executable File
9 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
# Wrapper script to run DEP commands from project root
|
|
# Usage: sudo bash dep.sh [start|stop|status]
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
DEP_DIR="$SCRIPT_DIR/dep/dante_package"
|
|
|
|
cd "$DEP_DIR" && bash dep.sh "$@"
|