mirror of
https://github.com/valitydev/yamerl.git
synced 2024-11-06 02:45:23 +00:00
11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
|
%% vim:ft=erlang:
|
||
|
|
||
|
case os:getenv("TRAVIS") of
|
||
|
"true" ->
|
||
|
JobId = os:getenv("TRAVIS_JOB_ID"),
|
||
|
lists:keystore(coveralls_service_job_id, 1, CONFIG,
|
||
|
{coveralls_service_job_id, JobId});
|
||
|
_ ->
|
||
|
CONFIG
|
||
|
end.
|