Fixing bug

This commit is contained in:
araison 2024-01-21 20:12:40 +01:00
parent 2957e35a69
commit bc3717450c

View File

@ -32,7 +32,7 @@ fi
echo "Installing ${pkg_manager} packages" echo "Installing ${pkg_manager} packages"
bash programs/package_manager/${pkg_manager}/packages.sh bash programs/package_manager/${pkg_manager}/packages.sh
if [ -f programs/package_manager/${pkg_manager}/others ] if [ -d programs/package_manager/${pkg_manager}/others ]
then then
for file in programs/package_manager/${pkg_manager}/others/*.sh for file in programs/package_manager/${pkg_manager}/others/*.sh
do do
@ -46,7 +46,7 @@ do
bash ${file} bash ${file}
done done
echo "Installing dotfiles" echo "Installing dotfiles"
for file in programs/dotfiles/**/*.sh for file in programs/dotfiles/*.sh
do do
bash ${file} bash ${file}
done done