Commit 5b8e04fb authored by Nick Thomas's avatar Nick Thomas

Merge branch '198-update-phony-to-have-accurate-list-of-targets' into 'master'

Resolve "Update .PHONY to have accurate list of targets"

Closes #198

See merge request gitlab-org/gitlab-shell!316
parents 7b23c6f0 19336304
.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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment