diff options
Diffstat (limited to 'resources/tools/block_replacer/gpl2apache.sh')
-rw-r--r-- | resources/tools/block_replacer/gpl2apache.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/tools/block_replacer/gpl2apache.sh b/resources/tools/block_replacer/gpl2apache.sh index a1ef8df075..b9450d0be4 100644 --- a/resources/tools/block_replacer/gpl2apache.sh +++ b/resources/tools/block_replacer/gpl2apache.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2020 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -25,3 +25,6 @@ fi find "${1}" \( -name "*.py" -o -name "*.sh" \) -print0 | xargs -0 \ python3 replace.py "gpl_block.txt" "apache_block.txt" + +find "${1}" \( -name "*.py" -o -name "*.sh" \) -print0 | xargs -0 \ +python3 replace.py "gpl_long_block.txt" "apache_block.txt" |