Skip to content
This repository has been archived by the owner on Oct 27, 2023. It is now read-only.

Commit

Permalink
Use UTC for commit date
Browse files Browse the repository at this point in the history
When we commit the `public` directory changes currently we use `date`
which puts the date in local format. Since we are a global team use UTC
instead.
  • Loading branch information
tcharding committed Feb 15, 2023
1 parent 8a059e4 commit 0ec8126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ build() {

# Deploy the site to https://github.com/rust-bitcoin/rust-bitcoin.github.io
deploy() {
local _date=$(date)
local _date=$(date --utc)
echo -e "\033[0;32m Deploying site to GitHub...\033[0m"
cd $root

Expand Down

0 comments on commit 0ec8126

Please sign in to comment.