aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2024-06-20 13:10:26 +0200
committersrdusr <trevorgray@srdusr.com>2024-06-20 13:10:26 +0200
commita5fb134d9c5e63c5e26ece467d0deced64f86ce7 (patch)
treece8b0e3af51640472a50c2fb5b2fb8a56a527866
parent51213147616b00a88e295926cf4d195e5a379908 (diff)
downloaddotfiles-a5fb134d9c5e63c5e26ece467d0deced64f86ce7.tar.gz
dotfiles-a5fb134d9c5e63c5e26ece467d0deced64f86ce7.zip
Testing
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9564695..7593850 100644
--- a/README.md
+++ b/README.md
@@ -91,13 +91,13 @@ $ config checkout
### Installing onto a new Unix/Linux system
```bash
-wget -q "https://github.com/srdusr/dotfiles/archive/main.zip" -O "$HOME/Downloads/dotfiles.zip"
+wget -q "https://github.com/srdusr/dotfiles/archive/main.tar.gz" -O "$HOME/Downloads/dotfiles.tar.gz"
mkdir -p "$HOME/dotfiles-main"
-tar -xf "$HOME/Downloads/dotfiles.zip" -C "$HOME/dotfiles-main" --strip-components=1
+tar -xf "$HOME/Downloads/dotfiles.tar.gz" -C "$HOME/dotfiles-main" --strip-components=1
mv -f "$HOME/dotfiles-main/"* "$HOME"
rm -rf "$HOME/dotfiles-main"
chmod +x "$HOME/install.sh"
-rm "$HOME/Downloads/dotfiles.zip"
+rm "$HOME/Downloads/dotfiles.tar.gz"
$HOME/install.sh
```