exprToFunction() and installExprFunction() support quosures (#3472)

Co-authored-by: Barret Schloerke <schloerke@gmail.com>
Co-authored-by: Winston Chang <winston@stdout.org>
Co-authored-by: Carson Sievert <cpsievert1@gmail.com>
Co-authored-by: Joe Cheng <joe@rstudio.com>
This commit is contained in:
Barret Schloerke
2021-08-02 22:09:19 -04:00
committed by GitHub
parent f01dc9f0fb
commit 1b3ed88bd1
41 changed files with 818 additions and 1048 deletions

View File

@@ -159,9 +159,9 @@ jobs:
if: github.event_name == 'push'
run: |
# Can't push to a protected branch
if [ -z "`git cherry`"]; then
if [ -z "`git cherry origin/master`"]; then
echo "Un-pushed commits:"
git cherry -v
git cherry -v origin/master
echo "\nCan not push to a protected branch. Exiting"
exit 1
fi