oculus 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/oculus/storage/file_store.rb +1 -1
- data/lib/oculus/version.rb +1 -1
- metadata +1 -1
@@ -37,7 +37,7 @@ module Oculus
|
|
37
37
|
star_path = starred_filename_for_id(query.id)
|
38
38
|
|
39
39
|
if query.starred
|
40
|
-
File.symlink(File.
|
40
|
+
File.symlink(File.join('..', "#{query.id}.query"), star_path) unless File.exist?(star_path)
|
41
41
|
elsif File.exist?(star_path)
|
42
42
|
File.unlink(star_path)
|
43
43
|
end
|
data/lib/oculus/version.rb
CHANGED