1
0
Fork 0
mirror of synced 2024-05-19 11:53:53 +12:00

add verbose to rm

This commit is contained in:
tomamplius 2022-10-21 21:09:54 +02:00 committed by GitHub
parent 012a007116
commit 1f29047958
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
#!/bin/bash
KEEP="dist|package.json|yarn.lock|client|builder|build|pm2.config.js|docker_run.sh"
echo "Removing unneeded build files:"
ls | egrep -v $KEEP | xargs rm -rf
ls | egrep -v $KEEP | xargs rm -rfv
NODE_ENV=production yarn