fix(handlers): make them executable and remove xargs
This commit is contained in:
parent
7e7263bdaa
commit
14c9d58ebd
7 changed files with 3 additions and 3 deletions
2
handlers/apt/install
Normal file → Executable file
2
handlers/apt/install
Normal file → Executable file
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
xargs sudo apt install "$@"
|
||||
sudo apt install "$@"
|
||||
|
|
2
handlers/apt/ppa
Normal file → Executable file
2
handlers/apt/ppa
Normal file → Executable file
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
xargs add-apt-repository "$@"
|
||||
add-apt-repository "$@"
|
||||
|
|
2
handlers/arch/install
Normal file → Executable file
2
handlers/arch/install
Normal file → Executable file
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
xargs sudo pacman -S --needed --noconfirm "$@"
|
||||
sudo pacman -S --needed --noconfirm "$@"
|
||||
|
|
0
handlers/deb/install
Normal file → Executable file
0
handlers/deb/install
Normal file → Executable file
0
handlers/make/install
Normal file → Executable file
0
handlers/make/install
Normal file → Executable file
0
handlers/script/install
Normal file → Executable file
0
handlers/script/install
Normal file → Executable file
0
handlers/snap/install
Normal file → Executable file
0
handlers/snap/install
Normal file → Executable file
Loading…
Add table
Reference in a new issue