-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate
executable file
·151 lines (144 loc) · 3.33 KB
/
update
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#!/usr/bin/env ruby
DOT_VERSION_FILE = ".dot-version".freeze
CURRENT_VERSION = Gem::Version.new("0.11.0")
LOCAL_VERSION =
if File.exist?(DOT_VERSION_FILE)
Gem::Version.new(File.read(DOT_VERSION_FILE).chomp)
else
File.open(DOT_VERSION_FILE, "w") { |f| f.write "0.0.0" }
Gem::Version.new("0.0.0")
end
CHANGELOG = [
{
version: Gem::Version.new("0.0.1"),
commands: [
"./dev-install/common/symlink.sh",
],
notes: [],
},
{
version: Gem::Version.new("0.1.0"),
commands: [
"git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm",
],
notes: [
"To finish tpm install, source the `.tmux.conf` file, then hit `prefix + I` to fetch and source the plugins",
],
},
{
version: Gem::Version.new("0.2.0"),
commands: [
"./dev-install/common/symlink.sh",
],
notes: [
"To finish p10k configuration, source `.zshrc`, then run `exec zsh` to fully restart zsh",
],
},
{
version: Gem::Version.new("0.2.1"),
commands: [
"./dev-install/common/vim.sh",
"./dev-install/common/tmux.zsh",
],
notes: [
"Make sure to install new packages from Brewfile or `./dev-install/ubuntu/apt.zsh`",
],
},
{
version: Gem::Version.new("0.3.0"),
commands: [
"./dev-install/common/symlink.sh",
],
notes: [
"Finish `fzf` installation by running `/usr/local/opt/fzf/install`",
"Make sure `fd` is installed",
],
},
{
version: Gem::Version.new("0.4.0"),
commands: [
"./dev-install/common/vim.sh",
],
notes: [],
},
{
version: Gem::Version.new("0.5.0"),
commands: [
"brew bundle --no-upgrade",
"./dev-install/common/vim.sh",
],
notes: [],
},
{
version: Gem::Version.new("0.6.0"),
commands: [
"./dev-install/common/vim.sh",
],
notes: [],
},
{
version: Gem::Version.new("0.7.0"),
commands: [
"./dev-install/common/vim.sh",
],
notes: [],
},
{
version: Gem::Version.new("0.8.0"),
commands: [
"./dev-install/common/node.zsh",
],
notes: [
"To finish nvm and node installation, source `.zshrc`, then run `exec zsh` to fully restart zsh",
],
},
{
version: Gem::Version.new("0.9.0"),
commands: [
"echo 'Installing Brewfile...'",
"brew bundle --no-upgrade",
],
notes: [],
},
{
version: Gem::Version.new("0.10.0"),
commands: [
"./dev-install/common/ruby.zsh",
],
notes: [],
},
{
version: Gem::Version.new("0.11.0"),
commands: [
"./dev-install/common/tmux.zsh",
],
notes: [
"Reload the ssh session and tmux config",
],
},
].freeze
if LOCAL_VERSION == CURRENT_VERSION
puts "👍 Up-to-date!"
else
puts "🔧 Upgrading from #{LOCAL_VERSION} to #{CURRENT_VERSION}..."
commands = []
notes = []
CHANGELOG.each do |entry|
if entry[:version] > LOCAL_VERSION
commands << entry[:commands]
notes << entry[:notes]
end
end
commands.flatten!.compact!
notes.flatten!.compact!
commands.each do |cmd|
puts "⚡ Running `#{cmd}`"
system(cmd)
end
File.open(DOT_VERSION_FILE, "w") { |f| f.write CURRENT_VERSION }
puts "✅ Upgraded to #{CURRENT_VERSION}!"
unless notes.empty?
puts "🗒 Post-upgrade notes:"
notes.flatten.compact.each { |nt| puts " - #{nt}" }
end
end