Skip to content

Commit

Permalink
Fix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Dec 3, 2022
1 parent 4082c25 commit d57a969
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Casks/textmate-chapel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/chapel-lang/chapel-tmbundle"

artifact "chapel-tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/Chapel.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/Chapel.tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-crystal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
plugin_name = "Crystal.tmbundle"

artifact "#{plugin_name}-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
end
2 changes: 1 addition & 1 deletion Casks/textmate-cucumber.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
plugin_name = "Cucumber.tmbundle"

artifact "cucumber-tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
end
2 changes: 1 addition & 1 deletion Casks/textmate-editorconfig.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/Mr0grog/editorconfig-textmate"

artifact "editorconfig-textmate.tmplugin",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/EditorConfig.tmplugin"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/EditorConfig.tmplugin"
end
2 changes: 1 addition & 1 deletion Casks/textmate-elixir.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/elixir-lang/elixir-tmbundle"

artifact "elixir-tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/Elixir.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/Elixir.tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-fish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/sanssecours/Fish.tmbundle"

artifact "Fish.tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/Fish.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/Fish.tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-glsl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
plugin_name = "GLSL.tmbundle"

artifact "#{plugin_name}-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
end
2 changes: 1 addition & 1 deletion Casks/textmate-javascript-babel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/ravasthi/javascript-babel.tmbundle"

artifact "javascript-babel.tmbundle-main",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/JavaScript (Babel).tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/JavaScript (Babel).tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-javascript-eslint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
plugin_name = "javascript-eslint.tmbundle"

artifact plugin_name,
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/JavaScript ESLint.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/JavaScript ESLint.tmbundle"

preflight do
files = Dir.glob("#{staged_path}/*")
Expand Down
2 changes: 1 addition & 1 deletion Casks/textmate-onsave.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/reitermarkus/on-save.tmbundle"

artifact "on-save.tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/OnSave.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/OnSave.tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-opencl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
homepage "https://github.com/reitermarkus/opencl.tmbundle"

artifact "opencl.tmbundle-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/OpenCL.tmbundle"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/OpenCL.tmbundle"
end
2 changes: 1 addition & 1 deletion Casks/textmate-openhab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
plugin_name = "OpenHAB.tmbundle"

artifact "#{plugin_name}-master",
target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
end
2 changes: 1 addition & 1 deletion Casks/textmate-rubocop.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

plugin_name = "RuboCop.tmbundle"

artifact plugin_name, target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
artifact plugin_name, target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"

preflight do
FileUtils.mv staged_path / "#{plugin_name}-master", staged_path / plugin_name
Expand Down
2 changes: 1 addition & 1 deletion Casks/textmate-rust.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

plugin_name = "Rust.tmbundle"

artifact plugin_name, target: "#{ENV["HOME"]}/Library/Application Support/TextMate/Bundles/#{plugin_name}"
artifact plugin_name, target: "#{Dir.home}/Library/Application Support/TextMate/Bundles/#{plugin_name}"

preflight do
FileUtils.mv staged_path / "#{plugin_name}-master", staged_path / plugin_name
Expand Down

0 comments on commit d57a969

Please sign in to comment.