]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/danger/clean/prod.sh
Return to sequelize@4.0.0-2 (makes tests fail)
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / prod.sh
... / ...
CommitLineData
1#!/bin/bash
2
3read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
4echo
5
6if [[ "$REPLY" =~ ^[Yy]$ ]]; then
7 NODE_ENV=production npm run ts-node "./scripts/danger/clean/cleaner"
8fi