From 7b47c00ea7bbb9d723166ef621d5aaa3faf97d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=22phoe=22=20Herda?= Date: Sat, 28 Mar 2020 16:53:19 +0100 Subject: [PATCH] Delete pgloader.lisp (#1119) Fixes #1115 --- pgloader.lisp | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 pgloader.lisp diff --git a/pgloader.lisp b/pgloader.lisp deleted file mode 100755 index c40c4b9..0000000 --- a/pgloader.lisp +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -#| -exec sbcl --script "$0" $@ -|# - -;;; load the necessary components then parse the command line -;;; and launch the work - -#-quicklisp -(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" - (user-homedir-pathname)))) - (when (probe-file quicklisp-init) - (load quicklisp-init))) - -;; now is the time to load our Quicklisp project -(format t "Loading quicklisp and the pgloader project and its dependencies...") -(terpri) -(with-output-to-string (*standard-output*) - (ql:quickload '(:pgloader))) - -(in-package #:pgloader) - -;;; actually call the main function, too -(main SB-EXT:*POSIX-ARGV*)