1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00
budibase/scripts/cleanup.sh

5 lines
227 B
Bash
Raw Normal View History

#!/bin/bash
2022-10-09 20:35:21 +13:00
KEEP="dist package.json yarn.lock client builder build pm2.config.js docker_run.sh"
ls | grep -v $(echo ${KEEP} | awk '{split($0,a," ");for (i in a) printf "-e ^"a[i]"$ "}') | xargs rm -fr
NODE_ENV=production yarn