Skip to content

Commit 655294b

Browse files
knightburtonyichoi
authored andcommitted
Change the signed-off template
IoT.js-VSCode-DCO-1.0-Signed-off-by: Imre Kiss [email protected]
1 parent 1f6b498 commit 655294b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ After the engine is running you can start the debug session inside the extension
111111
If the client (VSCode extension) is connected then you have to see that file which is running inside the engine in the vscode editor and you have to see where the execution is stopped. Now you can use the VSCode debug action bar to control the debug session.
112112

113113
# License
114-
IoT.js Code is Open Source software under the [Apache 2.0 license](LICENSE). Complete license and copyright information can be found within the code.
114+
IoT.js VSCode extension is Open Source software under the [Apache 2.0 license](LICENSE). Complete license and copyright information can be found within the code.

tools/check_signed_off.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function print_help
3535
echo " checking a pull request, perform strict check otherwise"
3636
echo ""
3737
echo "The last line of every commit message must follow the form of:"
38-
echo "'IoT.js-Debug-DCO-1.0-Signed-off-by: NAME EMAIL', where NAME and EMAIL must"
38+
echo "'IoT.js-VSCode-DCO-1.0-Signed-off-by: NAME EMAIL', where NAME and EMAIL must"
3939
echo "match the name and email address of the author of the commit (unless in"
4040
echo "tolerant mode)."
4141
}
@@ -91,7 +91,7 @@ if [ "$TOLERANT" == "no" ]
9191
then
9292
author_name=`git show -s --format=%an $commit_hash`
9393
author_email=`git show -s --format=%ae $commit_hash`
94-
required_signed_off_by_line="IoT.js-Debug-DCO-1.0-Signed-off-by: $author_name $author_email"
94+
required_signed_off_by_line="IoT.js-VSCode-DCO-1.0-Signed-off-by: $author_name $author_email"
9595

9696
if [ "$actual_signed_off_by_line" != "$required_signed_off_by_line" ]
9797
then
@@ -100,7 +100,7 @@ then
100100
fi
101101
else
102102
echo -e "\e[1;33mWarning! The name and email address of the author of the $commit_hash commit is not checked in tolerant mode! \e[0m"
103-
if echo "$actual_signed_off_by_line" | grep -q -v '^IoT.js-Debug-DCO-1.0-Signed-off-by:'
103+
if echo "$actual_signed_off_by_line" | grep -q -v '^IoT.js-VSCode-DCO-1.0-Signed-off-by:'
104104
then
105105
echo -e "\e[1;33mSigned-off-by message is incorrect. The following line should be at the end of the $commit_hash commit's message: '$required_signed_off_by_line'. \e[0m"
106106
exit 1

0 commit comments

Comments
 (0)