Fix typos
This commit is contained in:
parent
3e94db0969
commit
537938886d
|
@ -24,7 +24,7 @@ while true; do
|
|||
fi
|
||||
echo "git clone $repo $home_PATH/Repos/dotfiles"
|
||||
if [[ $? == 0 ]]; then
|
||||
for file in $home_PATH/Repos/*; do
|
||||
for file in $home_PATH/Repos/dotfiles/*; do
|
||||
echo "ln -s $file $home_PATH/.config/"
|
||||
done
|
||||
break
|
||||
|
@ -61,7 +61,7 @@ echo ""
|
|||
echo "sudo pacman -S --noconfirm --needed base-devel"
|
||||
while IFS= read -r line ; do
|
||||
echo "sudo pacman -S --noconfirm --needed $line"
|
||||
done < $script_PATH/arch-assets/archpkg.txt
|
||||
done < $scripts_PATH/arch-assets/archpkg.txt
|
||||
|
||||
echo -e "\n\n\n\n"
|
||||
echo ""
|
||||
|
@ -83,6 +83,7 @@ read -p "Would you like to set an alternate SSH port? (Empty to skip) " sshPort
|
|||
if [[ ! -z $sshPort && $sshPort =~ ^[0-9]+$ ]]; then
|
||||
echo "sudo ufw allow $sshPort"
|
||||
fi
|
||||
echo "systemctl enable ufw"
|
||||
|
||||
# Setup Printer
|
||||
echo "systemctl enable cups"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
while IFS= read -r line ; do
|
||||
echo "sudo pacman -S --needed $line"
|
||||
echo "sudo pacman -S --noconfirm --needed $line"
|
||||
done < $1
|
||||
|
||||
# Get Blender
|
||||
|
|
Loading…
Reference in a new issue