Skip to content

Commit

Permalink
Fix PPA downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf authored and PhysSong committed Jul 7, 2017
1 parent d99b5fb commit b4af94a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmake/msys/fetch_ppa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ mkdir $ppa_dir

while read -r j
do
if [ "$j" = "Filename:" ] ; then
continue
fi
echo "Downloading $j..."
wget -O "$ppa_dir$(basename "$j")" "$PPA_ROOT/$j"
echo "$PPA_ROOT/$j"
wget -O "$ppa_dir$(basename "$j")" "$(echo "$PPA_ROOT/$j" | sed 's/\/Filename: /\//gi')"
done < $temp_file


Expand Down

0 comments on commit b4af94a

Please sign in to comment.