Skip to content

Commit a0f4186

Browse files
author
Chris Maunder
committed
Docs / categorisation updates
1 parent 208eaf4 commit a0f4186

File tree

13 files changed

+35
-20
lines changed

13 files changed

+35
-20
lines changed

src/demos/modules/DotNetLongProcess/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
::
33
:: .NET Long Process Demo
44
::
5-
:: This script is only called from ..\..\setup.bat
5+
:: This script is only called from ..\..\..\setup.bat
66
::
77
:: For help with install scripts, notes on variables and methods available, tips,
88
:: and explanations, see /src/modules/install_script_help.md
99

1010
@if "%1" NEQ "install" (
11-
echo This script is only called from ..\..\setup.bat
11+
echo This script is only called from ..\..\..\setup.bat
1212
@pause
1313
@goto:eof
1414
)

src/demos/modules/DotNetLongProcess/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
#
77
# This script is called from the ObjectDetectionYOLOv5Net directory using:
88
#
9-
# bash ../../setup.sh
9+
# bash ../../../setup.sh
1010
#
1111
# The setup.sh script will find this install.sh file and execute it.
1212
#
1313
# For help with install scripts, notes on variables and methods available, tips,
1414
# and explanations, see /src/modules/install_script_help.md
1515

1616
if [ "$1" != "install" ]; then
17-
read -t 3 -p "This script is only called from: bash ../../setup.sh"
17+
read -t 3 -p "This script is only called from: bash ../../../setup.sh"
1818
echo
1919
exit 1
2020
fi

src/demos/modules/DotNetLongProcess/modulesettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
"PublishingInfo" : {
99
"Description": "Provides a template for a .NET module that runs a long process.",
10-
"Category": "Computer Vision",
10+
"Category": "Demo Modules",
1111
"Stack": "C#",
1212
"License": "MIT",
1313
"LicenseUrl": "https://opensource.org/licenses/MIT",

src/demos/modules/DotNetSimple/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
::
33
:: .NET YOLO Object Detection
44
::
5-
:: This script is only called from ..\..\setup.bat
5+
:: This script is only called from ..\..\..\setup.bat
66
::
77
:: For help with install scripts, notes on variables and methods available, tips,
88
:: and explanations, see /src/modules/install_script_help.md
99

1010
@if "%1" NEQ "install" (
11-
echo This script is only called from ..\..\setup.bat
11+
echo This script is only called from ..\..\..\setup.bat
1212
@pause
1313
@goto:eof
1414
)

src/demos/modules/DotNetSimple/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
#
77
# This script is called from the ObjectDetectionYOLOv5Net directory using:
88
#
9-
# bash ../../setup.sh
9+
# bash ../../../setup.sh
1010
#
1111
# The setup.sh script will find this install.sh file and execute it.
1212
#
1313
# For help with install scripts, notes on variables and methods available, tips,
1414
# and explanations, see /src/modules/install_script_help.md
1515

1616
if [ "$1" != "install" ]; then
17-
read -t 3 -p "This script is only called from: bash ../../setup.sh"
17+
read -t 3 -p "This script is only called from: bash ../../../setup.sh"
1818
echo
1919
exit 1
2020
fi

src/demos/modules/DotNetSimple/modulesettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
"PublishingInfo" : {
99
"Description": "Provides Object Detection in .NET using YOLOv8.",
10-
"Category": "Computer Vision",
10+
"Category": "Demo Modules",
1111
"Stack": "C#, ONNX, DirectML, YOLO",
1212
"License": "MIT",
1313
"LicenseUrl": "https://opensource.org/licenses/MIT",

src/demos/modules/PythonLongProcess/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
::
33
:: PythonLongProcess
44
::
5-
:: This script is only called using ..\..\src\setup.bat
5+
:: This script is only called using ..\..\..\src\setup.bat
66
::
77
:: For help with install scripts, notes on variables and methods available, tips,
88
:: and explanations, see /src/modules/install_script_help.md
99

1010
@if "%1" NEQ "install" (
11-
echo This script is only called from ..\..\src\setup.bat
11+
echo This script is only called from ..\..\..\src\setup.bat
1212
@pause
1313
@goto:eof
1414
)

src/demos/modules/PythonLongProcess/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
#
77
# This script is called from the PythonLongProcess directory using:
88
#
9-
# bash ../../setup.sh
9+
# bash ../../../setup.sh
1010
#
1111
# The setup.sh script will find this install.sh file and execute it.
1212
#
1313
# For help with install scripts, notes on variables and methods available, tips,
1414
# and explanations, see /src/modules/install_script_help.md
1515

1616
if [ "$1" != "install" ]; then
17-
read -t 3 -p "This script is only called from: bash ../../setup.sh"
17+
read -t 3 -p "This script is only called from: bash ../../../setup.sh"
1818
echo
1919
exit 1
2020
fi

src/demos/modules/PythonLongProcess/modulesettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"PublishingInfo" : {
99
"Description": "A demo of a long process in Python",
1010
"IconURL": null,
11-
"Category": "Demo`",
11+
"Category": "Demo Modules",
1212
"Stack": "Python",
1313
"License": "MIT",
1414
"LicenseUrl": "",

src/demos/modules/PythonSimple/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
::
33
:: Object Detection (YOLOv8)
44
::
5-
:: This script is only called from ..\..\setup.bat
5+
:: This script is only called from ..\..\..\setup.bat
66
::
77
:: For help with install scripts, notes on variables and methods available, tips,
88
:: and explanations, see /src/modules/install_script_help.md
99

1010
@if "%1" NEQ "install" (
11-
echo This script is only called from ..\..\setup.bat
11+
echo This script is only called from ..\..\..\setup.bat
1212
@pause
1313
@goto:eof
1414
)

0 commit comments

Comments
 (0)