Update .local/share/chezmoi/home/dot_local/bin/executable_task, .local/share/chezmoi/home/dot_local/Taskfile-local.yml, .local/share/chezmoi/home/dot_local/bin/executable_install-program, .local/share/chezmoi/home/private_dot_config/shell/exports.sh.tmpl

Deleted .local/share/chezmoi/home/dot_local/bin/executable_run
This commit is contained in:
Brian Zalewski 2022-12-06 18:01:08 +00:00
parent 72ed175f08
commit a04ee34f4b
5 changed files with 17 additions and 8 deletions

View file

@ -4,8 +4,8 @@ version: '3'
# This is your local Taskfile.yml file. You can define tasks and scripts while leveraging some of the nifty
# features of https://taskfile.dev. You can safely place your scripts here and they will be combined with
# a veteran stack of Taskfile.yml files. You can access the tasks defined here by running
# `run local:default` for example. You must keep all the tasks in this file without including other files
# because the main Taskfile.yml is a symlinked one. Anyway, try `run local:default`.
# `task local:default` for example. You must keep all the tasks in this file without including other files
# because the main Taskfile.yml is a symlinked one. Anyway, try `task local:default`.
tasks:
default: echo "Get started on https://taskfile.dev"
bitwarden:

View file

@ -887,9 +887,9 @@ async function ensurePackageManager(packageManager) {
cd macports-base
sudo git checkout v2.8.0
sudo ./configure --enable-readline
sudo make
sudo make install
sudo make distclean
sudo bash --noprofile --norc -c 'make && make install && make distclean'
sudo bash --noprofile --norc -c 'make install'
sudo bash --noprofile --norc -c 'make distclean'
`
);
log('info', logStage, `${packageManager} is now installed`)

View file

@ -1,3 +0,0 @@
#!/usr/bin/env bash
task --taskfile $HOME/.local/src/shared-common/common/Taskfile.yml $@

View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
if command -v task > /dev/null; then
if [ -f Taskfile.yml ]; then
task $@
else
task --taskfile "$HOME/.local/src/shared-common/common/Taskfile.yml" $@
fi
else
echo 'task is not installed.' && exit 1
fi

View file

@ -34,6 +34,7 @@ export GTK_RC_FILES="$XDG_CONFIG_HOME/gtk-1.0/gtkrc"
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc"
### PATH
export PATH="/opt/local/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.local/bin/docker:$PATH"
export PATH="$HOME/.local/bin/firejail:$PATH"