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