Skip to content

Commit

Permalink
update apt-file
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <github@jessfraz.com>
  • Loading branch information
jessfraz committed Jun 23, 2023
1 parent 02e62f7 commit ae66fa6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .dockerfunc
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,13 @@ nginx_config(){
# Container Aliases
#
apt_file(){
docker run --rm -it \
--name apt-file \
${DOCKER_REPO_PREFIX}/apt-file
if [[ -n "$(which apt-file)" ]]; then
"$(which apt-file)" "$@"
else
docker run --rm -it \
--name apt-file \
${DOCKER_REPO_PREFIX}/apt-file
fi
}
alias apt-file="apt_file"
audacity(){
Expand Down
3 changes: 3 additions & 0 deletions .path
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ export PATH="/usr/share/bcc/tools:${PATH}"
# add gnubin for mac
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:/opt/homebrew/opt/gnu-sed/libexec/gnubin:${PATH}"

# add scdaemon
export PATH="/usr/lib/gnupg:${PATH}"

# add gnu getopt
export PATH="/usr/local/opt/gnu-getopt/bin:${PATH}"

Expand Down
3 changes: 3 additions & 0 deletions gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -164,3 +164,6 @@ _testmain.go

# linux kernel debs
linux-*.deb

.yarnrc.yml
.yarn/

0 comments on commit ae66fa6

Please sign in to comment.