From 153afb28660a332b4d1c06bad911d24cb50c89eb Mon Sep 17 00:00:00 2001 From: Matt C Date: Thu, 29 Sep 2022 02:08:32 +0000 Subject: [PATCH] Closes [FEATURE]: Request ISO-8601 date format be standardized on #21 --- .github/workflows/build.yml | 3 ++- crystal/pacman.conf | 4 ++-- crystal/profiledef.sh | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67454d4..188a68a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,8 @@ jobs: id: build run: | # Set BUILD_DATE - export BUILD_DATE=$(date +'%m-%d-%g-%H-%M') + # 2022-09-29 + export BUILD_DATE=$(date +'%Y-%m-%d') # Make sure container is up-to-date pacman -Syu --needed --noconfirm diff --git a/crystal/pacman.conf b/crystal/pacman.conf index f642589..e42ecc0 100644 --- a/crystal/pacman.conf +++ b/crystal/pacman.conf @@ -73,10 +73,10 @@ RemoteFileSigLevel = Never # after the header, and they will be used before the default mirrors. [crystal-x86_64] -Server = https://repo.getcryst.al/x86_64/ +Include = /etc/pacman.d/crystal-mirrorlist [crystal-any] -Server = https://repo.getcryst.al/any/ +Include = /etc/pacman.d/crystal-mirrorlist #[testing] #Include = /etc/pacman.d/mirrorlist diff --git a/crystal/profiledef.sh b/crystal/profiledef.sh index f4e4598..77c15ec 100644 --- a/crystal/profiledef.sh +++ b/crystal/profiledef.sh @@ -2,10 +2,10 @@ # shellcheck disable=SC2034 iso_name="crystal-live" -iso_label="CRYS_$(date +%Y%m)" +iso_label="CRYS_$(date +'%Y-%m-%d')" iso_publisher="Crystal Linux " iso_application="Crystal Linux Live" -iso_version="$(date +"%m-%d-%g-%H-%M")" +iso_version="$(date +'%Y-%m-%d')" install_dir="arch" bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito') arch="x86_64"