Skip to content

Commit

Permalink
Fix shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 30, 2024
1 parent e3cb027 commit 00a50ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e

# Timestamp for logs
echo "$(date)"
date

# Update
git pull origin main
Expand Down
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -e

# Gets commit hash as message
REV=`git rev-parse HEAD`
REV=$(git rev-parse HEAD)

# git checkout gh-pages # Step 3

Expand All @@ -27,6 +27,6 @@ git push # Step 9

# CalVer YYYY.0M
date=$(date '+%Y.%m')
echo $date
echo "$date"
git tag -a "$date" -m "Release $date"
git push --tags

0 comments on commit 00a50ac

Please sign in to comment.