diff options
-rw-r--r-- | Makefile | 12 | ||||
-rwxr-xr-x | bin/check | 2 |
2 files changed, 9 insertions, 5 deletions
@@ -1,4 +1,4 @@ -.PHONY: test test_ruby test_ruby_rubocop test_ruby_rspec test_go test_go_format test_go_test +.PHONY: validate verify verify_ruby verify_golang test test_ruby test_golang setup _install build compile check clean validate: verify test @@ -22,10 +22,14 @@ test_ruby: test_golang: support/go-test -setup: compile -build: compile -compile: +setup: _install bin/gitlab-shell + +_install: bin/install + +build: bin/gitlab-shell +compile: bin/gitlab-shell +bin/gitlab-shell: bin/compile check: @@ -33,7 +33,7 @@ config = GitlabConfig.new abort("ERROR: missing option in config.yml") unless config.auth_file -print "\nAccess to #{config.auth_file}: " +print "Access to #{config.auth_file}: " if system(File.dirname(__FILE__) + '/gitlab-keys', 'check-permissions') print 'OK' else |