Skip to content

Commit

Permalink
Conditional guard
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmorganson committed Oct 26, 2024
1 parent 6fe5973 commit b563067
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion home/dot_profile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ PATH="$HOME/.rye/shims:$HOME/.local/bin:$HOME/.orbstack/bin:/opt/homebrew/bin:/u
LS_COLORS={{ output "pkgx" "vivid" "--color-mode" "8-bit" "generate" "one-dark" | trim | quote }}

#GitHub
{{ $user := fromJson (output "sh" "-c" "pkgx gh api https://api.github.com/user && true || echo '{}'") }}
{{- $user := fromJson (output "sh" "-c" "pkgx gh api https://api.github.com/user 2>/dev/null || true") -}}
{{- if and $user.login $user.name $user.id }}
GITHUB_USER={{ $user.login | quote }}
GIT_AUTHOR_NAME={{ $user.name | quote }}
GIT_AUTHOR_EMAIL={{ printf "%v+%[email protected]" $user.id $user.login | quote }}
GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
{{- end }}

# Bash
BASH_SILENCE_DEPRECATION_WARNING=1
Expand Down

0 comments on commit b563067

Please sign in to comment.