From 39ae7a834bc594e4b56cb93911f023650566525e Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Thu, 7 Mar 2013 09:01:48 -0700 Subject: [PATCH] Removing saltification compat --- collects/meta/planet2-index/official/main.rkt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/collects/meta/planet2-index/official/main.rkt b/collects/meta/planet2-index/official/main.rkt index 7bb89a48d3..ef5e57a0af 100644 --- a/collects/meta/planet2-index/official/main.rkt +++ b/collects/meta/planet2-index/official/main.rkt @@ -49,16 +49,6 @@ (define (client_secret) (file->string (build-path root "client_secret"))) -(module+ main - (define users-old-path (build-path root "users.old")) - (when (directory-exists? users-old-path) - (for ([u (in-list (directory-list users-old-path))]) - (define uop (build-path users-old-path u)) - (display-to-file (salty (file->string uop)) - (build-path users-path u)) - (delete-file uop)) - (delete-directory users-old-path))) - (define pkgs-path (build-path root "pkgs")) (make-directory* pkgs-path)