From b1a8f2e907e438288fca04d44dbd6f7775356439 Mon Sep 17 00:00:00 2001 From: Lilli Szafranski Date: Tue, 14 Jan 2025 10:54:27 -0800 Subject: [PATCH] Alias our git-jira command to just 'jira' (#132) ## Summary: Make it even easier to use the `git jira` hackathon tool Issue: XXX-XXXX ## Test plan: Try `jira open FEI-1234` Author: lillialexis Reviewers: csilvers Required Reviewers: Approved By: csilvers Checks: Pull Request URL: https://github.com/Khan/khan-dotfiles/pull/132 --- .profile.khan | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.profile.khan b/.profile.khan index b129af1..8ce240e 100755 --- a/.profile.khan +++ b/.profile.khan @@ -23,6 +23,8 @@ export PATH="$HOME/go/bin:$PATH" export MANPATH="$KA_DEVROOT/our-lovely-cli/man:$MANPATH" +# Alias our git-jira command to just 'jira'. +alias jira="git jira" # Add our go-binaries home to PATH. # TODO(csilvers): move this back above the devtools ones after we get @@ -85,8 +87,8 @@ if [ `uname -s` = Darwin ]; then export LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS" export CPPFLAGS="-I/usr/local/opt/openssl/include $CPPFLAGS" export CFLAGS="-I/usr/local/include -L/usr/local/lib $CFLAGS" - - # Ingore some warnings that were being escalated as errors when compiling + + # Ignore some warnings that were being escalated as errors when compiling # golangci-lint plugins. See DEV-821 for more info. export CGO_CPPFLAGS="-Wno-error -Wno-nullability-completeness -Wno-expansion-to-defined -Wno-builtin-requires-header $CGO_CPPFLAGS"