mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
10 lines
240 B
Bash
Executable file
10 lines
240 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
|
|
echo
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
|
NODE_ENV=production npm run ts-node -- --type-check "./scripts/danger/clean/cleaner"
|
|
fi
|