From 85b067df452a17d253694ec06aba637d77b3de5d Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 8 Nov 2024 21:35:23 +0100 Subject: [PATCH] libnetwork: remove warning on unexpected package version against git tag --- lib/libnetwork.lib.in | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/libnetwork.lib.in b/lib/libnetwork.lib.in index 0751b73..e5a0654 100644 --- a/lib/libnetwork.lib.in +++ b/lib/libnetwork.lib.in @@ -1016,16 +1016,6 @@ function git.create_tarball() { [ "$destdir" ] || notify.error $"\ (bug)"" -- $FUNCNAME: "$"missing mandatory arg"" (--destdir)" - local today="$(date "+%Y%m%d")" - if [ "$pck_version" ]; then - [ "$pck_version" = "${today}git" ] || notify.warning "\ -${NOTE}${pck_version}${NORM}: "$"\ -not the expected package version"" (${NOTE}${today}git${NORM})..." - else - pck_version="${today}git" - notify.debug "$FUNCNAME: pck_version = \"$pck_version\"" - fi - type -p git &>/dev/null || notify.error $"utility not found"": \`git'"