kopia lustrzana https://github.com/OpenDroneMap/WebODM
8 wiersze
282 B
Bash
Executable File
8 wiersze
282 B
Bash
Executable File
#!/bin/bash
|
|
# Delete all node_modules and build directories within plugins' public/ folders
|
|
|
|
__dirname=$(cd $(dirname "$0"); pwd -P)
|
|
cd "${__dirname}/../../"
|
|
|
|
find plugins/ -type d \( -name build -o -name node_modules \) -path 'plugins/*/public/*' -exec rm -frv '{}' \;
|
|
echo "Done!" |