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:
parent
72ed175f08
commit
a04ee34f4b
5 changed files with 17 additions and 8 deletions
|
@ -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
|
# 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
|
# 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
|
# 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
|
# `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 `run local:default`.
|
# because the main Taskfile.yml is a symlinked one. Anyway, try `task local:default`.
|
||||||
tasks:
|
tasks:
|
||||||
default: echo "Get started on https://taskfile.dev"
|
default: echo "Get started on https://taskfile.dev"
|
||||||
bitwarden:
|
bitwarden:
|
||||||
|
|
|
@ -887,9 +887,9 @@ async function ensurePackageManager(packageManager) {
|
||||||
cd macports-base
|
cd macports-base
|
||||||
sudo git checkout v2.8.0
|
sudo git checkout v2.8.0
|
||||||
sudo ./configure --enable-readline
|
sudo ./configure --enable-readline
|
||||||
sudo make
|
sudo bash --noprofile --norc -c 'make && make install && make distclean'
|
||||||
sudo make install
|
sudo bash --noprofile --norc -c 'make install'
|
||||||
sudo make distclean
|
sudo bash --noprofile --norc -c 'make distclean'
|
||||||
`
|
`
|
||||||
);
|
);
|
||||||
log('info', logStage, `${packageManager} is now installed`)
|
log('info', logStage, `${packageManager} is now installed`)
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
task --taskfile $HOME/.local/src/shared-common/common/Taskfile.yml $@
|
|
11
.local/share/chezmoi/home/dot_local/bin/executable_task
Normal file
11
.local/share/chezmoi/home/dot_local/bin/executable_task
Normal 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
|
|
@ -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"
|
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc"
|
||||||
|
|
||||||
### PATH
|
### PATH
|
||||||
|
export PATH="/opt/local/bin:$PATH"
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
export PATH="$HOME/.local/bin/docker:$PATH"
|
export PATH="$HOME/.local/bin/docker:$PATH"
|
||||||
export PATH="$HOME/.local/bin/firejail:$PATH"
|
export PATH="$HOME/.local/bin/firejail:$PATH"
|
||||||
|
|
Loading…
Reference in a new issue