arg splitting
This commit is contained in:
parent
6070f88f4f
commit
e17921e9fb
1 changed files with 3 additions and 1 deletions
|
@ -17,7 +17,9 @@ in
|
||||||
script = writeShellScriptBin execName ''
|
script = writeShellScriptBin execName ''
|
||||||
while IFS="" read -r p || [ -n "$p" ]
|
while IFS="" read -r p || [ -n "$p" ]
|
||||||
do
|
do
|
||||||
echo "$p"
|
args=($p)
|
||||||
|
echo ''${args[0]}
|
||||||
|
echo ''${args[1]}
|
||||||
done < "${config.repo-clone.pkg}"
|
done < "${config.repo-clone.pkg}"
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue