Update 7 files

- /home/dot_local/bin/symlink_yank
- /home/dot_local/bin/symlink_qscp
- /home/dot_local/bin/executable_gist
- /home/dot_local/bin/symlink_yank.tmpl
- /home/dot_local/bin/symlink_qscp.tmpl
- /home/dot_local/bin/executable_task
- /home/dot_local/bin/executable_gist.tmpl
This commit is contained in:
Brian Zalewski 2023-01-12 20:11:52 +00:00
parent 456b899569
commit ea02b3205d
5 changed files with 6 additions and 6 deletions

View file

@ -1,5 +0,0 @@
#!/usr/bin/env bash
echo {{ .user.GITHUB_GIST_TOKEN }} > ~/.gist
gist $@
rm -f ~/.gist

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
echo "{{ .user.GITHUB_GIST_TOKEN }}" > ~/.gist
gist $*
rm -f ~/.gist

View file

@ -2,7 +2,7 @@
if command -v task > /dev/null && [ -n "$PATH_TASK" ]; then
if [ -f Taskfile.yml ]; then
$PATH_TASK $@
$PATH_TASK $*
else
$PATH_TASK --taskfile "$HOME/.local/src/shared-common/common/Taskfile.yml" $@
fi