# HG changeset patch # User Paul Boddie # Date 1268492403 -3600 # Node ID cd390410f5266a202ffe0bbf33c7f24478ef2b13 # Parent 5f076e22cc7eeb433833a1e98175dfb352e58122 Removed the scripts installation script. diff -r 5f076e22cc7e -r cd390410f526 instscripts --- a/instscripts Sat Mar 13 15:59:30 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -#!/usr/bin/env python - -from glob import glob -import MoinMoin.script -import os, shutil, sys - -target_dir = os.path.split(MoinMoin.script.__file__)[0] - -test = "--test" in sys.argv or "-n" in sys.argv - -for script in glob(os.path.join("scripts", "*", "*.py")): - subdir = os.path.split(os.path.split(script)[0])[-1] - destination = os.path.join(target_dir, subdir) - print "Copying", script, "to", destination, "...", - if not test: - shutil.copy(script, destination) - print "done." - else: - print "not done (test only)." - -# vim: tabstop=4 expandtab shiftwidth=4