The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add update for local hugo-obsidian on make update

+3 -1
+3 -1
Makefile
··· 4 4 @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' 5 5 6 6 update: ## Update Quartz to the latest version on Github 7 + go install github.com/jackyzha0/hugo-obsidian@latest 7 8 @git remote show upstream || (echo "remote 'upstream' not present, setting 'upstream'" && git remote add upstream https://github.com/jackyzha0/quartz.git) 8 9 git fetch upstream 9 10 git log --oneline --decorate --graph ..upstream/hugo 10 11 git checkout -p upstream/hugo -- layouts .github Makefile assets/js assets/styles/base.scss assets/styles/darkmode.scss config.toml data 11 12 12 - update-force: ## Forcefully pull all changes and don't ask to patch 13 + update-force: ## Forcefully pull all changes and don't ask to patch 14 + go install github.com/jackyzha0/hugo-obsidian@latest 13 15 @git remote show upstream || (echo "remote 'upstream' not present, setting 'upstream'" && git remote add upstream https://github.com/jackyzha0/quartz.git) 14 16 git fetch upstream 15 17 git checkout upstream/hugo -- layouts .github Makefile assets/js assets/styles/base.scss assets/styles/darkmode.scss config.toml data