aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/danger/clean/prod.sh
blob: 9103a794415f02e558638537c5e1c52cda9622ee (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

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