We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb374c5 commit 7d52b34Copy full SHA for 7d52b34
_gem/lib/go_gem/rake_task.rb
@@ -65,21 +65,21 @@ def initialize(gem_name)
65
yield(self) if block_given?
66
67
namespace(task_namespace) do
68
- desc "Run go test"
+ desc "Run #{go_bin_path} test"
69
task(:test) do
70
within_target_dir do
71
sh RakeTask.build_env_vars, "#{go_bin_path} test #{go_test_args} ./..."
72
end
73
74
75
- desc "Run go test -race"
+ desc "Run #{go_bin_path} test -race"
76
task(:testrace) do
77
78
sh RakeTask.build_env_vars, "#{go_bin_path} test #{go_test_args} -race ./..."
79
80
81
82
- desc "Run go fmt"
+ desc "Run #{go_bin_path} fmt"
83
task(:fmt) do
84
85
sh "#{go_bin_path} fmt ./..."
0 commit comments