swap order of regexes in notice.sh

This commit is contained in:
Zachary Snow 2024-05-05 18:23:04 -04:00
parent 988f76b92b
commit a4928a87e6
2 changed files with 7 additions and 7 deletions

12
NOTICE
View File

@ -470,24 +470,24 @@ Dependency: exceptions-0.10.7
Copyright 2013-2015 Edward Kmett
Copyright 2012 Google Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the author nor the names of his contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE

View File

@ -14,6 +14,6 @@ for dependency in `echo "$dependencies"`; do
echo "Dependency: $dependency"
echo "================================================================================"
echo ""
curl "$license_url" 2> /dev/null | sed -e "s/^/ /" -e "s/ *$//" -e "s/\r$//"
curl "$license_url" 2> /dev/null | sed -e "s/\r$//" -e "s/^/ /" -e "s/ *$//"
echo ""
done