summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2018-06-26 12:55:04 +0100
committerYongqin Liu <yongqin.liu@linaro.org>2018-06-26 12:57:35 +0100
commit903fd6625419363241ac3d2f6812f07c76faf0d6 (patch)
tree29d7c9e155e025237f5a4bd901cf734b7eb0d475
parent0c3335399662b6f58a9be37bc64d2c4f68057d46 (diff)
host-tools/check_newcts.sh: fix problem for upload BUILD-INFO.txt file
the name must be BUILD-INFO.txt Change-Id: I270d0ec908d91f8a88ff01f3fc7c10d31bab5bf5 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
-rw-r--r--.gitreview4
-rwxr-xr-xhost-tools/check_newcts.sh3
2 files changed, 6 insertions, 1 deletions
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..adbd132
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,4 @@
+[gerrit]
+host=review.linaro.org
+port=29418
+project=people/yongqin.liu/public/android.git
diff --git a/host-tools/check_newcts.sh b/host-tools/check_newcts.sh
index 20dbc92..2e436a2 100755
--- a/host-tools/check_newcts.sh
+++ b/host-tools/check_newcts.sh
@@ -139,7 +139,7 @@ function upload_to_s3(){
function upload_build_info_to_s3(){
local remote_dir_path=$1
- local build_info_path=$(mktemp -p /tmp/ BUILD-INFO.txt_XXX)
+ local build_info_path="/tmp/BUILD-INFO.txt"
local build_info="Format-Version: 0.5\n\nFiles-Pattern: *\nLicense-Type: open\n"
echo -e ${build_info} >${build_info_path}
@@ -269,3 +269,4 @@ function main(){
}
main "$@"
+#upload_build_info_to_s3 "cts/18.06"