mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
15 lines
290 B
Bash
Executable File
15 lines
290 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
go install github.com/cgrates/cgrates/cmd/cgr-engine
|
|
cr=$?
|
|
go install github.com/cgrates/cgrates/cmd/cgr-loader
|
|
cl=$?
|
|
go install github.com/cgrates/cgrates/cmd/cgr-console
|
|
cc=$?
|
|
go install github.com/cgrates/cgrates/cmd/cgr-tester
|
|
ct=$?
|
|
|
|
exit $cr || $cl || $cc || $ct
|
|
|
|
|