blob: 3b51f941c7bcfc455300ea19cf955d7a40100520 (
plain)
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
|
require 'formula'
require 'keg'
if ARGV.named.length != 2
onoe "Usage: brew switch <formula> <version>"
exit 1
end
name = ARGV.shift
version = ARGV.shift
# Does this formula have any versions?
f = Formula.factory(name.downcase)
cellar = f.prefix.parent
unless cellar.directory?
onoe "#{name} not found in the Cellar."
exit 2
end
# Does the target version exist?
unless (cellar+version).directory?
onoe "#{name} does not have a version \"#{version}\" in the Cellar."
versions = cellar.children.select { |pn| pn.directory? }.collect { |pn| pn.basename.to_s }
puts "Versions available: #{versions.join(', ')}"
exit 3
end
# Unlink all existing versions
cellar.children.select { |pn| pn.directory? }.each do |v|
keg = Keg.new(v)
puts "Cleaning #{keg}"
keg.unlink
end
# Link new version
keg = Keg.new(cellar+version)
puts "#{keg.link} links created for #{keg}"
|