From 8860c9080fa49e9a9693b82007d93a675df26ee5 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Fri, 16 Oct 2020 15:40:31 -0500 Subject: [PATCH 1/3] Update 'README.md' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc235d6..b9d691f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ As you can see, support for `go` templates is built in. While executing the temp In the examples above we can see these variables: * `.Crew.*` * `.Hold.*` -* `.Args.Arg*` +* `.Args.Arg.*` The `Crew` and the `Hold` are loaded if the captain is given a ship to sail. (A ship need not be specified if one named `default` exists in the given configuration.) From 51fb4ea06bfe869fb3e25fb1f109611fa2ae28aa Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Fri, 16 Oct 2020 15:42:15 -0500 Subject: [PATCH 2/3] Update 'README.md' --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b9d691f..a9d36fb 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,8 @@ The second `Plunder` rule will trigger on a Quest named `ddg-search`. It's going Currently, only top-level values in JSON responses can be plundered. +Similarly to Quests, a Ship can easily be edited in whatever editor you have defined in EDITOR by issuing: ncpt -E + ### Hold - Where Plunder is Stored These are simple JSON files that act as key-value stores for anything plundered. From 1bd9c1136678f06355bf0021176ef22a9e911568 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Fri, 16 Oct 2020 15:51:45 -0500 Subject: [PATCH 3/3] Update 'build.sh' --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index c7dbd02..1234215 100755 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG # Echo an error message before exiting trap 'echo "\"${last_command}\" command finished with exit code $?."' EXIT -# Build chroniclerd binary +# Build ncpt binary cd cmd/ncpt go build -o ncpt if [ ! -d ../../build ]; then