]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/danger/clean/modules.sh
Add ability to import videos from all supported youtube-dl sites
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / modules.sh
index d357e1b77f53ccdab295591216afe83748d1869f..99555a693578819d9887c52679237bcc23b124f4 100755 (executable)
@@ -1,7 +1,7 @@
-#!/usr/bin/env sh
+#!/bin/bash
 
-read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
+read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r
 
 if [[ "$REPLY" =~ ^[Yy]$ ]]; then
-  rm -rf node_modules client/node_modules client/typings/{browser,main}*
+  rm -rf node_modules client/node_modules
 fi