Commit 853957e7 authored by Kirill Smelkov's avatar Kirill Smelkov

X Fix gitlab-rails ("$@" being implicitly appended by generic_exec)

parent a74a096e
......@@ -39,6 +39,10 @@ gitlab:web_hook:{add,rm,list}
gitlab:test
db:create dev:setup
db:migrate
Useful to understand:
......
......@@ -52,11 +52,13 @@ environment =
[gitlab-rails]
<= gitlab-bin
command-line = ${bundler-4gitlab:bundle} exec rails "$@"
# NOTE sys.argv[1:] implicityly appended
command-line = ${bundler-4gitlab:bundle} exec rails
[gitlab-rake]
<= gitlab-bin
command-line = ${bundler-4gitlab:bundle} exec rake "$@"
# NOTE sys.argv[1:] implicityly appended
command-line = ${bundler-4gitlab:bundle} exec rake
# etc/
......
......@@ -93,7 +93,7 @@ environment =
[gitlab-repository]
recipe = slapos.recipe.build:gitclone
repository = https://gitlab.com/gitlab-org/gitlab-ce.git
revision = v7.12.0.rc3-0-gd5cbdcc7452e259f641dec0303a0a8bf61a62d18
revision = v7.12.0.rc3-6-gbef405333c2527a78ef5c2f438000e822e39669d
location = ${buildout:parts-directory}/gitlab
git-executable = ${git:location}/bin/git
......
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