zsh_dots 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ruby/dots/installation.rb +1 -1
- data/lib/ruby/dots/version.rb +1 -1
- metadata +1 -1
@@ -11,7 +11,7 @@ module Dots
|
|
11
11
|
|
12
12
|
# The Git remote we'll be pulling from. Set this in your +~/.zshenv+
|
13
13
|
# to use a different fork of the project.
|
14
|
-
REMOTE = ENV['DOTS_REMOTE']
|
14
|
+
REMOTE = ENV['DOTS_REMOTE'] or 'origin'
|
15
15
|
|
16
16
|
# Attempts to update DOTS, but fails if changes are detected
|
17
17
|
# in the repo beforehand.
|
data/lib/ruby/dots/version.rb
CHANGED