]> 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 1aa6c732b9cbc7eb05ec58dd73bdb17657447fa4..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
+  rm -rf node_modules client/node_modules
 fi