-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MicroEJ GitHub Delivery
committed
Oct 18, 2023
1 parent
268c388
commit ee53b1b
Showing
6 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# Copyright 2023 MicroEJ Corp. All rights reserved. | ||
# This library is provided in source code for use, modification and test, subject to license terms. | ||
# Any modification of the source code will break MicroEJ Corp. warranties on the whole library. | ||
# | ||
|
||
set -e | ||
|
||
if [ "$ACCEPT_MICROEJ_SDK_EULA" != "yes" ] && [ "$ACCEPT_MICROEJ_SDK_EULA" != "YES" ] | ||
then | ||
echo "" | ||
echo "##############################################################" | ||
echo "##### The MICROEJ SDK End-User License Agreement (EULA) must be accepted before it can start." | ||
echo "##### The license terms for this product can be downloaded from " | ||
echo "##### https://repository.microej.com/licenses/sdk/LAW-0011-LCS-MicroEJ_SDK-EULA-v3.1B.txt" | ||
echo "##### You can accept the EULA by setting the ACCEPT_MICROEJ_SDK_EULA=YES environment variable" | ||
echo "##############################################################" | ||
echo "" | ||
exit -1 | ||
fi | ||
|
||
exec "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# Copyright 2023 MicroEJ Corp. All rights reserved. | ||
# This library is provided in source code for use, modification and test, subject to license terms. | ||
# Any modification of the source code will break MicroEJ Corp. warranties on the whole library. | ||
# | ||
|
||
set -e | ||
|
||
if [ "$ACCEPT_MICROEJ_SDK_EULA" != "yes" ] && [ "$ACCEPT_MICROEJ_SDK_EULA" != "YES" ] | ||
then | ||
echo "" | ||
echo "##############################################################" | ||
echo "##### The MICROEJ SDK End-User License Agreement (EULA) must be accepted before it can start." | ||
echo "##### The license terms for this product can be downloaded from " | ||
echo "##### https://repository.microej.com/licenses/sdk/LAW-0011-LCS-MicroEJ_SDK-EULA-v3.1B.txt" | ||
echo "##### You can accept the EULA by setting the ACCEPT_MICROEJ_SDK_EULA=YES environment variable" | ||
echo "##############################################################" | ||
echo "" | ||
exit -1 | ||
fi | ||
|
||
exec "$@" |