diff --git a/src/build/build.v b/src/build/build.v index 31e7c3f3..4270e9d7 100644 --- a/src/build/build.v +++ b/src/build/build.v @@ -29,7 +29,7 @@ fn create_build_image() ?string { cmds_str := base64.encode_str(commands.join('\n')) c := docker.NewContainer{ - image: base_image + image: build.base_image env: ['BUILD_SCRIPT=$cmds_str'] entrypoint: ['/bin/sh', '-c'] cmd: ['echo \$BUILD_SCRIPT | base64 -d | /bin/sh -e'] diff --git a/src/git/client.v b/src/git/client.v index 7e1e55b0..92d27eea 100644 --- a/src/git/client.v +++ b/src/git/client.v @@ -10,7 +10,7 @@ fn send_request(method http.Method, address string, url string, api_key strin if params.len > 0 { params_str := params.keys().map('$it=${params[it]}').join('&') - full_url = "$full_url?$params_str" + full_url = '$full_url?$params_str' } mut req := http.new_request(method, full_url, '') ? @@ -24,7 +24,8 @@ fn send_request(method http.Method, address string, url string, api_key strin // get_repos returns the current list of repos. pub fn get_repos(address string, api_key string) ?map[string]GitRepo { - data := send_request(http.Method.get, address, '/api/repos', api_key, {}) ? + data := send_request(http.Method.get, address, '/api/repos', api_key, + {}) ? return data.data } @@ -32,10 +33,10 @@ pub fn get_repos(address string, api_key string) ?map[string]GitRepo { // add_repo adds a new repo to the server. pub fn add_repo(address string, api_key string, url string, branch string, repo string, arch []string) ?Response { params := { - 'url': url + 'url': url 'branch': branch - 'repo': repo - 'arch': arch.join(',') + 'repo': repo + 'arch': arch.join(',') } data := send_request(http.Method.post, address, '/api/repos', api_key, params) ? @@ -44,7 +45,8 @@ pub fn add_repo(address string, api_key string, url string, branch string, repo // remove_repo removes the repo with the given ID from the server. pub fn remove_repo(address string, api_key string, id string) ?Response { - data := send_request(http.Method.delete, address, '/api/repos/$id', api_key, {}) ? + data := send_request(http.Method.delete, address, '/api/repos/$id', api_key, + {}) ? return data }