aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-11 22:01:30 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-11 22:01:30 -0500
commit8321814a2f26c95adf4231bd08574ac440100b49 (patch)
treea4c26bd039a36b2210247feeabc326bd0f4ee004
parentUse proper input (diff)
downloadjellyfin-packaging-8321814a2f26c95adf4231bd08574ac440100b49.tar.gz
jellyfin-packaging-8321814a2f26c95adf4231bd08574ac440100b49.tar.bz2
jellyfin-packaging-8321814a2f26c95adf4231bd08574ac440100b49.zip
Take minutes and seconds off auto-version
1-hour resolution is enough to make this unique for our planned purposes, and keeps this from being too long. Once testing is completed can probably drop the hour too and just go with a 1-day version.
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 03d95d0..1fc6f47 100755
--- a/build.py
+++ b/build.py
@@ -417,6 +417,6 @@ except IndexError:
bvers = None
if jvers == "master":
- jvers = datetime.now().strftime("%Y%m%d%H%M%S")
+ jvers = datetime.now().strftime("%Y%m%d%H")
configurations[btype]['def'](jvers, btype, barch, bvers)
bgstack15