From ef95d84e4de50a4942c9dea8a914e4b8977bb91f Mon Sep 17 00:00:00 2001 From: Chris Thompson Date: Thu, 26 Jan 2023 17:54:11 -0500 Subject: [PATCH] Add file sync to pull command --- scripts/pull.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/pull.sh b/scripts/pull.sh index c86a32b..2379d35 100755 --- a/scripts/pull.sh +++ b/scripts/pull.sh @@ -12,5 +12,7 @@ echo "Dropping local db..." drush -y sql-drop echo "Pulling db from live into local..." drush -y sql-sync @live @self +echo "Pulling files from live into local..." +drush -y rsync @live:%files @self:%files drush cr echo "Done"