diff options
author | Colin Watson <cjwatson@debian.org> | 2009-09-22 19:10:28 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-09-22 19:10:28 +0000 |
commit | c7b3b9c173d1a350bde17232683c968cef444576 (patch) | |
tree | 0f22f886e6296097090774d64a4eae75a96c8dc1 /functions | |
parent | f4c7df442b116e61bd1c04dada180e71c6083008 (diff) | |
download | debootstrap-c7b3b9c173d1a350bde17232683c968cef444576.tar.gz |
Remove boneheaded use of sudo left over from testing (closes: #547949).
r60825
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1062,7 +1062,7 @@ setup_available () { done >"$TARGET/var/lib/dpkg/available" for pkg; do - echo "$pkg install" | sudo dpkg --admindir "$TARGET/var/lib/dpkg" --set-selections + echo "$pkg install" | dpkg --admindir "$TARGET/var/lib/dpkg" --set-selections done } |