fix(handlers): make them executable and remove xargs

This commit is contained in:
xeruf 2022-07-04 15:27:27 +02:00
parent 7e7263bdaa
commit 14c9d58ebd
7 changed files with 3 additions and 3 deletions

2
handlers/apt/install Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/sh
xargs sudo apt install "$@"
sudo apt install "$@"

2
handlers/apt/ppa Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/sh
xargs add-apt-repository "$@"
add-apt-repository "$@"

2
handlers/arch/install Normal file → Executable file
View 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
View File

0
handlers/make/install Normal file → Executable file
View File

0
handlers/script/install Normal file → Executable file
View File

0
handlers/snap/install Normal file → Executable file
View File