andygrove commented on code in PR #5044:
URL: https://github.com/apache/arrow-datafusion/pull/5044#discussion_r1085896291


##########
dev/release/publish_homebrew.sh:
##########
@@ -41,7 +50,7 @@ if ! git remote | grep -q --fixed-strings ${github_user}; then
 fi
 
 echo "Updating working copy"
-git fetch --all --prune --tags --force -j$(nproc)
+git fetch --all --prune --tags --force -j$(num_processing_units)

Review Comment:
   For Mac, I had to remove the parentheses here, otherwise I got the error:
   
   ```
   line 55: num_processing_units: command not found
   error: switch `j' requires a value
   ```
   
   ```suggestion
   git fetch --all --prune --tags --force -j$num_processing_units
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to