testing files
This commit is contained in:
parent
e17921e9fb
commit
e669b42cef
1 changed files with 11 additions and 3 deletions
14
service.nix
14
service.nix
|
@ -17,9 +17,17 @@ in
|
|||
script = writeShellScriptBin execName ''
|
||||
while IFS="" read -r p || [ -n "$p" ]
|
||||
do
|
||||
args=($p)
|
||||
echo ''${args[0]}
|
||||
echo ''${args[1]}
|
||||
args=($p) # [0]: repo-url [1]: target-path
|
||||
repo=''${args[0]}
|
||||
target=''${args[1]}
|
||||
|
||||
if [ -d "$target" ]; then
|
||||
if "''$(${pkgs.findutils}/bin/find "''$target" -maxdepth 0 -empty)"; then
|
||||
echo "~ Found Files at ''$target ~"
|
||||
else
|
||||
echo "~ No Files in ''$target ~"
|
||||
fi
|
||||
fi
|
||||
done < "${config.repo-clone.pkg}"
|
||||
'';
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue