mirror of https://github.com/Chocobozzz/PeerTube
8 lines
197 B
Bash
8 lines
197 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
read -p "This will remove all directories and Mongo database. Are you sure? " -n 1 -r
|
||
|
|
||
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
||
|
NODE_ENV=production node "./scripts/danger/clean/cleaner"
|
||
|
fi
|