12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file belongs to the framework. You are not expected to modify it.
|
|
|
|
set -eu
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ROOT="$DIR/../.."
|
|
|
|
cd "$ROOT/express"
|
|
"$DIR"/../cmd.d/tsx develop/clear-db.ts "$@"
|