You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@fluo.apache.org by GitBox <gi...@apache.org> on 2022/03/03 15:14:12 UTC

[GitHub] [fluo-uno] ctubbsii commented on a change in pull request #279: Add --test option to copy the test jar

ctubbsii commented on a change in pull request #279:
URL: https://github.com/apache/fluo-uno/pull/279#discussion_r818753281



##########
File path: bin/impl/util.sh
##########
@@ -151,7 +151,7 @@ function download_apache() {
 
 function print_cmd_usage() {
     cat <<EOF
-Usage: uno $1 <component> [--no-deps]
+Usage: uno $1 <component> [--no-deps][--test]

Review comment:
       ```suggestion
   Usage: uno $1 <component> [--no-deps] [--test]
   ```

##########
File path: bin/impl/install/accumulo.sh
##########
@@ -18,6 +18,13 @@
 # shellcheck source=bin/impl/util.sh
 source "$UNO_HOME"/bin/impl/util.sh
 
+function install_test_jar() {
+  local test_jar_source="$DOWNLOADS/accumulo-test-2.1.0-SNAPSHOT.jar"
+  local test_jar_destination="$ACCUMULO_HOME/lib"
+  print_to_console "Installing Apache Accumulo test jar $test_jar_source to $test_jar_destination"
+  mv $test_jar_source $test_jar_destination

Review comment:
       ```suggestion
     cp "$test_jar_source" "$test_jar_destination"
   ```




-- 
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: notifications-unsubscribe@fluo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org