PeerTube/scripts/danger/clean/prod.sh

11 lines
240 B
Bash
Raw Normal View History

2016-10-13 21:45:23 +02:00
#!/bin/bash
2018-03-27 10:35:12 +02:00
set -eu
2016-12-25 09:44:13 +01:00
read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
echo
2016-10-13 21:45:23 +02:00
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
NODE_ENV=production npm run ts-node -- --type-check "./scripts/danger/clean/cleaner"
2016-10-13 21:45:23 +02:00
fi