Skip to content

Commit 7d52b34

Browse files
committed
Fix desc
1 parent bb374c5 commit 7d52b34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_gem/lib/go_gem/rake_task.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,21 @@ def initialize(gem_name)
6565
yield(self) if block_given?
6666

6767
namespace(task_namespace) do
68-
desc "Run go test"
68+
desc "Run #{go_bin_path} test"
6969
task(:test) do
7070
within_target_dir do
7171
sh RakeTask.build_env_vars, "#{go_bin_path} test #{go_test_args} ./..."
7272
end
7373
end
7474

75-
desc "Run go test -race"
75+
desc "Run #{go_bin_path} test -race"
7676
task(:testrace) do
7777
within_target_dir do
7878
sh RakeTask.build_env_vars, "#{go_bin_path} test #{go_test_args} -race ./..."
7979
end
8080
end
8181

82-
desc "Run go fmt"
82+
desc "Run #{go_bin_path} fmt"
8383
task(:fmt) do
8484
within_target_dir do
8585
sh "#{go_bin_path} fmt ./..."

0 commit comments

Comments
 (0)