mirror of https://github.com/zachjs/sv2v.git
swap order of regexes in notice.sh
This commit is contained in:
parent
988f76b92b
commit
a4928a87e6
12
NOTICE
12
NOTICE
|
|
@ -470,24 +470,24 @@ Dependency: exceptions-0.10.7
|
||||||
|
|
||||||
Copyright 2013-2015 Edward Kmett
|
Copyright 2013-2015 Edward Kmett
|
||||||
Copyright 2012 Google Inc.
|
Copyright 2012 Google Inc.
|
||||||
|
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
are met:
|
are met:
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright
|
1. Redistributions of source code must retain the above copyright
|
||||||
notice, this list of conditions and the following disclaimer.
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
notice, this list of conditions and the following disclaimer in the
|
notice, this list of conditions and the following disclaimer in the
|
||||||
documentation and/or other materials provided with the distribution.
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
3. Neither the name of the author nor the names of his contributors
|
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
|
may be used to endorse or promote products derived from this software
|
||||||
without specific prior written permission.
|
without specific prior written permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
|
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
|
||||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ for dependency in `echo "$dependencies"`; do
|
||||||
echo "Dependency: $dependency"
|
echo "Dependency: $dependency"
|
||||||
echo "================================================================================"
|
echo "================================================================================"
|
||||||
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 ""
|
echo ""
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue