From 120a61e7e8f088bb9cca8e1556297b25ba9353b7 Mon Sep 17 00:00:00 2001 From: hexbabe Date: Fri, 1 Dec 2023 10:13:47 -0500 Subject: [PATCH] Change description of src/ in appimage boilerplate readme to include bit about everything in there being a placeholder; also take Viam out of log prefix in runsh --- README.md | 2 +- run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 17f3eab..ffb6584 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Use this repository's build process as boilerplate to deploy your own Python Via ## Quick tour of this repo - `packaging/`: the directory containing the Dockerfile that configures the Docker image to run the builder in, the AppImageBuilder.yml config file, and the icon. You must have Docker installed before running the build. -- `src/`: Python module code for the Viam module +- `src/`: Python module code for the Viam module. Replaceable boilerplate for whatever robot resource your module implements. - `Makefile`: `make` commands to build the module in different ways - `meta.json`: the metadata config file used when uploading/updating module info on the registry - `requirements.txt`: list of Python packages the module depends on diff --git a/run.sh b/run.sh index b51acbc..5be6c20 100755 --- a/run.sh +++ b/run.sh @@ -1,6 +1,6 @@ #!/bin/sh cd "$(dirname "$0")" -LOG_PREFIX="[Viam REPLACE_WITH_MODULE_NAME module setup]" +LOG_PREFIX="[REPLACE_WITH_MODULE_NAME setup]" echo "$LOG_PREFIX Starting the module."