]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/danger/clean/modules.sh
Server: fix db clean for clean script
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / modules.sh
... / ...
CommitLineData
1#!/bin/bash
2
3read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r
4
5if [[ "$REPLY" =~ ^[Yy]$ ]]; then
6 rm -rf node_modules client/node_modules
7fi