From e9e2e12e4eb3ea299bd9ef51594065c7408a6d16 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Thu, 1 Aug 2019 12:47:17 -0400 Subject: [PATCH] Fix avatars dir name #333 --- .travis/deploy_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/deploy_script.sh b/.travis/deploy_script.sh index 40b41b13..0c81bb42 100755 --- a/.travis/deploy_script.sh +++ b/.travis/deploy_script.sh @@ -89,7 +89,7 @@ if [ "$TRAVIS" = "true" ]; then # clear any app specific stuff that might have been loaded in find storage/app -mindepth 1 -not -name '.gitignore' -not -name public -not -name import -print0 -exec rm -rf {} + - find storage/app/public -mindepth 1 -not -name '.gitignore' -not -name avatar -not -name uploads -print0 -exec rm -rf {} + + find storage/app/public -mindepth 1 -not -name '.gitignore' -not -name avatars -not -name uploads -print0 -exec rm -rf {} + find storage/app/public/avatars -mindepth 1 -not -name '.gitignore' -print0 -exec rm -rf {} + find storage/app/public/uploads -mindepth 1 -not -name '.gitignore' -print0 -exec rm -rf {} + find storage/debugbar -mindepth 1 -not -name '.gitignore' -print0 -exec rm -rf {} +