Fix download scripts to handle empty lines
[oom/offline-installer.git] / build / creating_data / download-pip.sh
1 #   COPYRIGHT NOTICE STARTS HERE
2 #
3 #   Copyright 2018 © Samsung Electronics Co., Ltd.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 #   COPYRIGHT NOTICE ENDS HERE
18
19
20 # Load common-functions library
21 . $(dirname ${0})/../common-functions.sh
22
23 LIST_FILE="$1"
24 if [[ -z "$LIST_FILE" ]]; then
25     echo "Missing list file"
26     exit 1
27 fi
28 LIST_FILE=$(readlink -f "$LIST_FILE")
29
30
31 outdir="$2"
32 if [[ -z "$outdir" ]]; then
33     echo "Missing output directory"
34     exit 1
35 fi
36
37 lines=$(clean_list "$LIST_FILE" | wc -l)
38 cnt=1
39
40 # create output dir if not exists
41 mkdir -p "$outdir"
42
43 cd "$outdir"
44 for line in $(clean_list "$LIST_FILE)"; do
45     echo "Downloading $cnt / $lines: $line"
46     pip download $line
47     cnt=$((cnt+1))
48 done