77e537f868
This patch adds blank newline for each [yaml|sh] files if they don't end with one. This will allows us getting linters happy and avoid us having git adding "\ No newline at end of file" in diffs when pushing a new patch. In other way, you can configure Git to properly handle line endings in typing: $ git config --global core.autocrlf input Change-Id: I8a113541b3eae6a36ed32995822dedbbd2d9666e Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
10 lines
166 B
Bash
10 lines
166 B
Bash
#!/bin/bash
|
|
# Return a CI node
|
|
|
|
set -eux
|
|
|
|
VIRTHOST_KEY=$(head -n1 $WORKSPACE/cico_key.txt)
|
|
$WORKSPACE/bin/cico node done $VIRTHOST_KEY
|
|
$WORKSPACE/bin/cico inventory
|
|
|