epugh commented on code in PR #124:
URL: https://github.com/apache/solr-sandbox/pull/124#discussion_r2396376428
##########
scripts/gatling/lib/solr.sh:
##########
@@ -0,0 +1,66 @@
+#!/bin/bash
+
+function solr_checkout_source_in() {
+ if [[ -z $1 ]]; then
+ >&2 echo "Required argument 'location' was not provided"
+ return 1
+ fi
+
+ local location=$1
+ if [[ -d $location/solr ]]; then
+ # The checkout already exists I guess?
+ return 0
+ fi
+
+ pushd $location
+ git clone [email protected]:apache/solr.git
Review Comment:
```suggestion
git clone https://github.com/apache/solr.git
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]