summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreronkeo <ronan.keogh@est.tech>2019-05-23 15:50:42 +0000
committerMichal Ptacek <m.ptacek@partner.samsung.com>2019-05-24 12:10:19 +0000
commiteeabfd00fa979c7e8f3b50f37812ef96f5dea27d (patch)
treec0d6137097b8a31b3c70fa1c015c364e9fa11c2b
parent289783ac56fe6a14d2c239fc852b56ee35e2ecb7 (diff)
Fixing typo in download-pip.sh scriptcasablanca
Change-Id: I1216cb0fc2f47f29ef7f3880a03f4e6a3dfd3ec4 Issue-ID: OOM-1879 Signed-off-by: eronkeo <ronan.keogh@est.tech> (cherry picked from commit 507bda29594ce40ed66830183ec5647f39031299)
-rwxr-xr-xbuild/creating_data/download-pip.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/creating_data/download-pip.sh b/build/creating_data/download-pip.sh
index fd4a4363..7ab4b0c8 100755
--- a/build/creating_data/download-pip.sh
+++ b/build/creating_data/download-pip.sh
@@ -41,7 +41,7 @@ cnt=1
mkdir -p "$outdir"
cd "$outdir"
-for line in $(clean_list "$LIST_FILE)"; do
+for line in $(clean_list "$LIST_FILE"); do
echo "Downloading $cnt / $lines: $line"
pip download $line
cnt=$((cnt+1))