mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-24 09:26:27 +03:00
Fix installer
This commit is contained in:
parent
76c9a4a447
commit
a2bbc7a0c8
19
install.fish
19
install.fish
@ -2,14 +2,21 @@ echo "Installing lean theme..."
|
||||
|
||||
# -----------------Download Functions-----------------
|
||||
set tempDir "/tmp/lean_theme"
|
||||
set deleteThese install.fish README.md
|
||||
|
||||
rm -rf $tempDir
|
||||
git clone -q --depth=1 https://github.com/IlanCosman/lean.git $tempDir
|
||||
for file in $deleteThese
|
||||
rm "$tempDir/$file"
|
||||
# Clone repository into $tempDir
|
||||
if test -e $tempDir
|
||||
rm -rf $tempDir
|
||||
end
|
||||
cp -r $tempDir $__fish_config_dir
|
||||
git clone -q https://github.com/IlanCosman/lean.git $tempDir
|
||||
|
||||
# Remove unnecessary files
|
||||
rm "$tempDir/install.fish"
|
||||
rm "$tempDir/README.md"
|
||||
rm -rf "$tempDir/.git/"
|
||||
|
||||
# Copy directory contents into $__fish_config_dir and cleanup
|
||||
cp -rf "$tempDir/." $__fish_config_dir
|
||||
rm -rf $tempDir
|
||||
|
||||
# ----------------Set Theme Variables----------------
|
||||
# --------------Colors--------------
|
||||
|
Loading…
Reference in New Issue
Block a user