Make tools bash compatible
Change-Id: Iccccc91b0a44f92bcbb2442638a93e7624da112b
This commit is contained in:
parent
347bd599e5
commit
e21a142111
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Move to top level directory
|
# Move to top level directory
|
||||||
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
REAL_PATH=$(realpath $0)
|
||||||
cd "$(dirname "$REAL_PATH")/.."
|
cd "$(dirname "$REAL_PATH")/.."
|
||||||
|
|
||||||
. tools/validate-docker-execute.sh
|
. tools/validate-docker-execute.sh
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
REAL_PATH=$(python -c "import os,sys;print(os.path.realpath('$0'))")
|
# Move to top level directory
|
||||||
|
REAL_PATH=$(realpath $0)
|
||||||
cd "$(dirname "$REAL_PATH")/.."
|
cd "$(dirname "$REAL_PATH")/.."
|
||||||
|
|
||||||
RES=0
|
RES=0
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
# Move to top level directory
|
||||||
|
REAL_PATH=$(realpath $0)
|
||||||
cd "$(dirname "$REAL_PATH")/.."
|
cd "$(dirname "$REAL_PATH")/.."
|
||||||
|
|
||||||
find . -name '*.yaml' -o -name '*.yml' -print0 |
|
find . -name '*.yaml' -o -name '*.yml' -print0 |
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
REAL_PATH=$(python -c "import os,sys;print(os.path.realpath('$0'))")
|
# Move to top level directory
|
||||||
|
REAL_PATH=$(realpath $0)
|
||||||
cd "$(dirname "$REAL_PATH")/.."
|
cd "$(dirname "$REAL_PATH")/.."
|
||||||
|
|
||||||
RES=0
|
RES=0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user