Remove target check in autoinstall/before.sh
This commit is contained in:
parent
6003e52c8a
commit
7934e32b27
2 changed files with 7 additions and 4 deletions
|
@ -1,14 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ "${action:?}" = "run" ]
|
||||
action=${action:?}
|
||||
|
||||
# if action is run or completions, do nothing
|
||||
if [ "$action" = "run" ] || [ "$action" = "completions" ]
|
||||
then
|
||||
return
|
||||
exit 0
|
||||
fi
|
||||
|
||||
clean=${args[--clean]:-}
|
||||
target=${args[target]:?}
|
||||
|
||||
if [ "${action:?}" = "exe" ]
|
||||
if [ "$action" = "exe" ]
|
||||
then
|
||||
target="$HOME/.local/bin/$target"
|
||||
fi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: autostart-manage
|
||||
help: Manage autostart
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
|
||||
dependencies:
|
||||
tomlq: please install yq (https://github.com/kislyuk/yq)
|
||||
|
|
Loading…
Reference in a new issue