You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by db...@apache.org on 2019/01/10 23:11:32 UTC

[geode-native] branch develop updated: Correct pathnames in example README instructions

This is an automated email from the ASF dual-hosted git repository.

dbarnes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 9b07fd7  Correct pathnames in example README instructions
9b07fd7 is described below

commit 9b07fd7ab97d5588010b9523738446d6a859726f
Author: Dave Barnes <db...@pivotal.io>
AuthorDate: Thu Jan 10 15:11:24 2019 -0800

    Correct pathnames in example README instructions
---
 examples/cpp/continuousquery/README.md    | 2 +-
 examples/cpp/dataserializable/README.md   | 2 +-
 examples/cpp/function-execution/README.md | 4 ++--
 examples/cpp/pdxserializable/README.md    | 2 +-
 examples/cpp/pdxserializer/README.md      | 2 +-
 examples/cpp/put-get-remove/README.md     | 2 +-
 examples/cpp/remotequery/README.md        | 2 +-
 examples/cpp/transaction/README.md        | 2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/examples/cpp/continuousquery/README.md b/examples/cpp/continuousquery/README.md
index f2f9941..59d557b 100644
--- a/examples/cpp/continuousquery/README.md
+++ b/examples/cpp/continuousquery/README.md
@@ -34,7 +34,7 @@ This is a simple example showing how to create a continuous query.
 1. Execute `continuousquery`:
 
   ```
-  $ build/continuousquery
+  $ ./continuousquery
   Executing continuous query
   Create orders
   Putting and changing Order objects in the region
diff --git a/examples/cpp/dataserializable/README.md b/examples/cpp/dataserializable/README.md
index 9bad0d8..03f5a64 100644
--- a/examples/cpp/dataserializable/README.md
+++ b/examples/cpp/dataserializable/README.md
@@ -35,7 +35,7 @@ This is a simple example showing how to register for serialization of custom obj
 1. Execute `dataserializable`:
 
   ```
-  $ build/dataserializable
+  $ ./dataserializable
   Create orders
   Storing orders in the region
   Getting the orders from the region
diff --git a/examples/cpp/function-execution/README.md b/examples/cpp/function-execution/README.md
index 073a597..a20deed 100644
--- a/examples/cpp/function-execution/README.md
+++ b/examples/cpp/function-execution/README.md
@@ -37,10 +37,10 @@ the example app executes those functions and prints out the result set(s).
   ---------- | ----------------------------------------------
   the-server | Region "/partition_region" created on "the-server"
   
-1. Execute `function-execution` from the `build` directory:
+1. Run the `function-execution` example:
 
   ```
-  $ build/function-execution 
+  $ ./function-execution 
   Result count = 3
 
        Result[0]=VALUE--1
diff --git a/examples/cpp/pdxserializable/README.md b/examples/cpp/pdxserializable/README.md
index 785e0b2..7f5e8bd 100644
--- a/examples/cpp/pdxserializable/README.md
+++ b/examples/cpp/pdxserializable/README.md
@@ -35,7 +35,7 @@ This is a simple example showing how to register for serialization of custom obj
 1. Execute `pdxserializable`:
 
   ```
-  $ build/pdxserializable
+  $ ./pdxserializable
   Create orders
   Storing orders in the region
   Getting the orders from the region
diff --git a/examples/cpp/pdxserializer/README.md b/examples/cpp/pdxserializer/README.md
index e913d26..eaed594 100644
--- a/examples/cpp/pdxserializer/README.md
+++ b/examples/cpp/pdxserializer/README.md
@@ -35,7 +35,7 @@ This is a simple example showing how to register for serialization of custom obj
 1. Execute `pdxserializer`:
 
   ```
-  $ build/pdxserializer
+  $ ./pdxserializer
   Storing orders in the region
   Getting the orders from the region
   OrderID: 1
diff --git a/examples/cpp/put-get-remove/README.md b/examples/cpp/put-get-remove/README.md
index 9de0a6c..9f4bd91 100644
--- a/examples/cpp/put-get-remove/README.md
+++ b/examples/cpp/put-get-remove/README.md
@@ -37,7 +37,7 @@ We then put, get, and remove some primitive data in the region.
 1. Execute `put-get-remove`:
 
   ```
-  $ build/put-get-remove
+  $ ./put-get-remove
   Storing id and username in the region
   Getting the user info from the region
     rtimmons = Robert Timmons
diff --git a/examples/cpp/remotequery/README.md b/examples/cpp/remotequery/README.md
index 61bdda0..d47d991 100644
--- a/examples/cpp/remotequery/README.md
+++ b/examples/cpp/remotequery/README.md
@@ -35,7 +35,7 @@ This is a simple example showing how to create and execute a remote query.
 1. Execute `remotequery`:
 
   ```
-  $ build/remotequery
+  $ ./remotequery
   Create orders
   Storing orders in the region
   Getting the orders from the region
diff --git a/examples/cpp/transaction/README.md b/examples/cpp/transaction/README.md
index de5cf6e..51c7d33 100644
--- a/examples/cpp/transaction/README.md
+++ b/examples/cpp/transaction/README.md
@@ -38,7 +38,7 @@ existing key while showing how to handle exceptions.
 1. Execute `transaction`:
 
   ```
-  $ build/transaction
+  $ ./transaction
     Created cache
     Created region 'exampleRegion'
     Rolled back transaction - retrying(4)