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 /libs/git | |
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 'libs/git')
-rwxr-xr-x | libs/git | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -579,7 +579,7 @@ git_project_release() { if ! [ -z "$release_branch" ] then - local archive_path="$root/$RELEASE/$SOURCES/$project/$release_branch.$TAR_XZ" + local archive_path="$root/$RELEASE/$SOURCES/$project/$release_branch.$ARCHIVE" local sources_path="$root/$SOURCES/$repository" printf '%s\n' "Releasing sources archive for $project (with ${arguments:-no argument}) from "$repository" git" @@ -620,7 +620,7 @@ git_project_release_check() { if ! [ -z "$release_branch" ] then - local archive_path="$root/$RELEASE/$SOURCES/$project/$release_branch.$TAR_XZ" + local archive_path="$root/$RELEASE/$SOURCES/$project/$release_branch.$ARCHIVE" file_exists_check "$archive_path" |