Skip to content
Snippets Groups Projects
Commit 3a3337c6 authored by osak buildhauer user's avatar osak buildhauer user Committed by Christopher Spinrath
Browse files

Fixed offline repo build script (syntax error + new debug output)

parent 84006e4c
Branches
No related tags found
No related merge requests found
...@@ -58,7 +58,10 @@ echo "ok." ...@@ -58,7 +58,10 @@ echo "ok."
echo "hey apt - which packages do we need (and where do we get them)?" echo "hey apt - which packages do we need (and where do we get them)?"
PKG_URLS=$(apt-get install --reinstall --print-uris -qq $PKG_LIST | cut -d"'" -f2) PKG_URLS=$(apt-get install --reinstall --print-uris -qq $PKG_LIST | cut -d"'" -f2)
PKG_URLS=$PKG_URLS $(get_packages_from_file "$CONTRIB_DIR/offline_repo_packages.manualurls")
echo "package urls:"
echo "$PKG_URLS"
PKG_URLS="$PKG_URLS $(get_packages_from_file "$CONTRIB_DIR/offline_repo_packages.manualurls")"
echo "downloading archives. this may take some time..." echo "downloading archives. this may take some time..."
wget -nc -P $PKG_DESTINATION $PKG_URLS wget -nc -P $PKG_DESTINATION $PKG_URLS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment