]> git.donarmstrong.com Git - bin.git/blobdiff - new_home_directory
remove convert_to_xls and .sa_bin
[bin.git] / new_home_directory
index 5a180fb01ae2383cece866c0cdf8d28669f9bc04..22d26892cdbe51fd58e0b1364d79239e147e2a12 100755 (executable)
@@ -18,17 +18,18 @@ for pkg in mr vcsh; do
         echo "Package $pkg doesn't exist; getting it"
         mkdir -p local_packages/$pkg;
         (cd local_packages/$pkg;
-         if which apt-et >/dev/null 2>&1; then
+         if which apt-get >/dev/null 2>&1; then
              apt-get download $pkg;
              dpkg-deb -x $pkg*.deb .
          else
              # ok, this host isn't Debian.
              if [ "$pkg" == "mr" ]; then
-                 wget http://http.debian.net/debian/pool/main/m/mr/mr_1.16_all.deb
+                 wget http://http.debian.net/debian/pool/main/m/myrepos/myrepos_1.20150503_all.deb
+                 ar p myrepos*.deb data.tar.xz|xz --decompress|tar -x
              elif [ "$pkg" == "vcsh" ]; then
                  wget http://http.debian.net/debian/pool/main/v/vcsh/vcsh_1.20150502-1_all.deb
+                 ar p vcsh*.deb data.tar.xz|xz --decompress|tar -x
              fi;
-             ar p $pkg*.deb|tar -jx;
              
          fi;
         );