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