We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03df41d commit 432eeabCopy full SHA for 432eeab
facebook/Makefile
@@ -181,7 +181,12 @@ $(WEEKLY_WEIGHTS): $(TODAY)
181
MSG="Expected new weekly weights file to start on: $$EXPECTED_NEW_WEEKLY_WEIGHTED; Actual new file starts on: $$MIN_NEW_WEEKLY_WEIGHTED"; \
182
echo "WARNING: $${MSG}" >> $(MESSAGES); \
183
fi
184
+ # Save existing params file from normal daily run.
185
+ if [ -f params.json ]; then cp params.json params.daily.json; fi
186
$(MAKE) weekly-weights-pipeline
187
+ rm -f params.json
188
+ # Restore params file from normal daily run.
189
+ mv params.daily.json params.json
190
191
192
dev: delphiFacebook_1.0.tar.gz
0 commit comments