Skip to content

Commit

Permalink
Update module.tl for the Operation.Inputs flip.
Browse files Browse the repository at this point in the history
This change was introduced in stellar 3128202 / go-timless-api cf6aecf.

Taking a little artistic license with the whitespace, as well.  It's
JSON; this is allowed.  And while typically, I don't think it a great
use of time to get jazzy with a document that's essentially supposed to
be machine readable / machine writeable... This one in particular is
often a point of reference for newcomers to the system, so, it's worth
a little more art than usual.

Also, drop old module symlink.  That form of file layout is now
thoroughly gone, as of the workspace rework in stellar e437e8f.

Signed-off-by: Eric Myhre <[email protected]>
  • Loading branch information
warpfork committed Dec 22, 2018
1 parent cf8617a commit 2c25c7d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
1 change: 0 additions & 1 deletion omnibus/.timeless/module.tl

This file was deleted.

36 changes: 18 additions & 18 deletions omnibus/module.tl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"rio_build": {
"operation": {
"inputs": {
"base": "/",
"go": "/app/go",
"src_rio": "/task"
"/": "base",
"/app/go": "go",
"/task": "src_rio"
},
"action": {
"exec": [
Expand All @@ -30,9 +30,9 @@
"repeatr_build": {
"operation": {
"inputs": {
"base": "/",
"go": "/app/go",
"src_repeatr": "/task"
"/": "base",
"/app/go": "go",
"/task": "src_repeatr"
},
"action": {
"exec": [
Expand All @@ -48,9 +48,9 @@
"stellar_build": {
"operation": {
"inputs": {
"base": "/",
"go": "/app/go",
"src_stellar": "/task"
"/": "base",
"/app/go": "go",
"/task": "src_stellar"
},
"action": {
"exec": [
Expand All @@ -66,9 +66,9 @@
"refmt_build": {
"operation": {
"inputs": {
"base": "/",
"go": "/app/go",
"src_refmt": "/task"
"/": "base",
"/app/go": "go",
"/task": "src_refmt"
},
"action": {
"exec": [
Expand All @@ -84,12 +84,12 @@
"assemble": {
"operation": {
"inputs": {
"base": "/",
"rio_build.bin-linux-amd64": "/task/parts/rio",
"repeatr_build.bin-linux-amd64": "/task/parts/repeatr",
"runc-bin-linux-amd64": "/task/parts/runc",
"stellar_build.bin-linux-amd64": "/task/parts/stellar",
"refmt_build.bin-linux-amd64": "/task/parts/refmt"
"/": "base",
"/task/parts/rio": "rio_build.bin-linux-amd64",
"/task/parts/repeatr": "repeatr_build.bin-linux-amd64",
"/task/parts/runc": "runc-bin-linux-amd64",
"/task/parts/stellar": "stellar_build.bin-linux-amd64",
"/task/parts/refmt": "refmt_build.bin-linux-amd64"
},
"action": {
"exec": [
Expand Down

0 comments on commit 2c25c7d

Please sign in to comment.