File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
components/console_simple_init/examples/console_basic/main Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 78
78
fi
79
79
done;
80
80
# Deploy docs with version path
81
- if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${comp } ]]; then
82
- echo "Deploying specific version of ${comp } (${{ env.BUMP_VERSION }})"
81
+ if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT } } ]]; then
82
+ echo "Deploying specific version of $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT } } (${{ env.BUMP_VERSION }})"
83
83
cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }}
84
84
export GITHUB_REF_NAME=${{ env.BUMP_VERSION }}
85
85
deploy-docs
Original file line number Diff line number Diff line change @@ -33,3 +33,7 @@ Please refer to instructions in [ESP-IDF](https://github.com/espressif/esp-idf)
33
33
34
34
* Brief introduction [ README] ( components/esp_mqtt_cxx/README.md )
35
35
* Full html [ documentation] ( https://docs.espressif.com/projects/esp-protocols/esp_mqtt_cxx/docs/latest/index.html )
36
+
37
+ ### console_simple_init
38
+
39
+ * Brief introduction [ README] ( components/console_simple_init/README.md )
Original file line number Diff line number Diff line change 10
10
11
11
int do_user_cmd (int argc , char * * argv )
12
12
{
13
- printf ("Hello from user command\n" );
13
+ printf ("Hello from user command. \n" );
14
14
return 0 ;
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments