diff options
Diffstat (limited to 'source/a')
-rwxr-xr-x | source/a/efibootmgr/fetch-efibootmgr.sh | 4 | ||||
-rwxr-xr-x | source/a/efivar/fetch-efivar.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source/a/efibootmgr/fetch-efibootmgr.sh b/source/a/efibootmgr/fetch-efibootmgr.sh index 884573d37..4d62a1f50 100755 --- a/source/a/efibootmgr/fetch-efibootmgr.sh +++ b/source/a/efibootmgr/fetch-efibootmgr.sh @@ -35,8 +35,8 @@ git clone https://github.com/rhboot/efibootmgr ) HEADISAT="$( cd efibootmgr && git log -1 --format=%h )" -DATE="$( cd efibootmgr && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd efibootmgr && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd efibootmgr && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd efibootmgr && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd efibootmgr && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv efibootmgr efibootmgr-${DATE}_${HEADISAT} diff --git a/source/a/efivar/fetch-efivar.sh b/source/a/efivar/fetch-efivar.sh index 2a2f40319..b6e7b7c40 100755 --- a/source/a/efivar/fetch-efivar.sh +++ b/source/a/efivar/fetch-efivar.sh @@ -35,8 +35,8 @@ git clone https://github.com/rhboot/efivar ) HEADISAT="$( cd efivar && git log -1 --format=%h )" -DATE="$( cd efivar && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd efivar && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd efivar && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd efivar && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd efivar && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv efivar efivar-${DATE}_${HEADISAT} |