Renamed installer and setup scripts

This commit is contained in:
Christian Colglazier 2020-08-22 09:20:24 -04:00
parent 6f6cc537cf
commit e77fb9a73c
6 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
sh ~/.config/scripts/install.sh -nr
sh ~/.config/scripts/setup.sh -nr
# Load user settings from config file.
. ~/.config/settings.conf

View File

@ -7,7 +7,7 @@ A collection of config files and scripts for Fedora GNU/Linux.
Run the following command to install
```sh
cd ~ && git clone git@github.com:AquaMorph/dotfiles.git && sh ~/dotfiles/scripts/install.sh
cd ~ && git clone git@github.com:AquaMorph/dotfiles.git && sh ~/dotfiles/scripts/setup.sh
```
## Scripts

View File

@ -87,7 +87,7 @@ function update {
cd $dotdir && git pull
endTime=$(date +%s -r $dotdir)
if (( "$startTime" < "$endTime" )); then
sh $dotdir/scripts/install.sh
sh $dotdir/scripts/setup.sh
exit
fi
}