diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-17 16:45:10 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-17 16:45:10 -0500 |
commit | 9a1a13fe90acb790e945daa7b2a9a9ed5e70798a (patch) | |
tree | 161f0b1f012379fdf6e14c0cc0daafcee4570e5e /download.sh | |
parent | 02b059679400e64c7b156aed404195ba9b0b3b20 (diff) |
source download.sh from lfs.sh and don't source lfs.sh from download.sh resulting in an infinite loop. Add commnds to lfs.sh to cpoy scripts and csv to /sources then cd into that directory, set the PATH to use tools/bin and download source.
Diffstat (limited to 'download.sh')
-rwxr-xr-x | download.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/download.sh b/download.sh index a034cb6..6846524 100755 --- a/download.sh +++ b/download.sh @@ -1,5 +1,5 @@ #!/bin/bash -source lfs.sh + cat packages.csv | while read line; do NAME="$(echo $line | cut -d\, -f1)" VERSION="$(echo $line | cut -d\, -f2)" |