You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
read -p "This script will install/update Project N.O.M.A.D. and its dependencies on your machine. Are you sure you want to continue? (y/n): " choice
332
+
read -p "This script will install/update Project N.O.M.A.D. and its dependencies on your machine. Are you sure you want to continue? (y/N): " choice
333
333
case"$choice"in
334
334
y|Y )
335
335
echo -e "${GREEN}#${RESET} User chose to continue with the installation."
336
336
;;
337
-
n|N )
338
-
echo -e "${RED}#${RESET} User chose not to continue with the installation."
339
-
exit 0
340
-
;;
341
337
* )
342
-
echo"Invalid Response"
343
338
echo"User chose not to continue with the installation."
344
339
exit 0
345
340
;;
@@ -351,25 +346,16 @@ accept_terms() {
351
346
echo"License Agreement & Terms of Use"
352
347
echo"__________________________"
353
348
printf"\n\n"
354
-
echo"Copyright 2025 Crosstalk Solutions, LLC"
355
-
printf"\n"
356
-
echo"Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:"
357
-
printf"\n"
358
-
echo"The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software."
349
+
echo"Project N.O.M.A.D. is licensed under the Apache License 2.0. The full license can be found at https://www.apache.org/licenses/LICENSE-2.0 or in the LICENSE file of this repository."
359
350
printf"\n"
360
-
echo"THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
351
+
echo"By accepting this agreement, you acknowledge that you have read and understood the terms and conditions of the Apache License 2.0 and agree to be bound by them while using Project N.O.M.A.D."
361
352
echo -e "\n\n"
362
-
read -p "I have read and accept License Agreement & Terms of Use (y/n)? " choice
353
+
read -p "I have read and accept License Agreement & Terms of Use (y/N)? " choice
363
354
case"$choice"in
364
355
y|Y )
365
356
accepted_terms='true'
366
357
;;
367
-
n|N )
368
-
echo"License Agreement & Terms of Use not accepted. Installation cannot continue."
369
-
exit 1
370
-
;;
371
358
* )
372
-
echo"Invalid Response"
373
359
echo"License Agreement & Terms of Use not accepted. Installation cannot continue."
0 commit comments