diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-06-25 18:00:48 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-06-25 18:45:34 -0400 |
commit | 00966661823723ea929ddf1f913d8ab0c2fc4796 (patch) | |
tree | b3595320f129404ef8c593c223abed7e82643895 /tools/release-external | |
parent | 0accfe9b22fc8d79461101c33f876767da72d3ef (diff) | |
download | librebootfr-00966661823723ea929ddf1f913d8ab0c2fc4796.tar.gz librebootfr-00966661823723ea929ddf1f913d8ab0c2fc4796.zip |
Vars TAR_XZ,ASC,SHA256SUM renamed for generality.
Will help facilitate sane code when handling: archive formats,
checksum file extensions, signature formats.
Diffstat (limited to 'tools/release-external')
-rwxr-xr-x | tools/release-external/release-external-helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release-external/release-external-helper b/tools/release-external/release-external-helper index bde03cfe..f10ac41a 100755 --- a/tools/release-external/release-external-helper +++ b/tools/release-external/release-external-helper @@ -1,5 +1,5 @@ #!/usr/bin/env bash release_external_files() { - find "$root/$RELEASE" -type f | grep -vP "\.$ASC|\.$SHA256SUM" + find "$root/$RELEASE" -type f | grep -vP "\.$DSIG|\.$CHECKSUM" } |