]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/danger/clean/dev.sh
Add ability to import videos from all supported youtube-dl sites
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / dev.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=test npm run ts-node -- --type-check "./scripts/danger/clean/cleaner"
8fi