summaryrefslogtreecommitdiff
path: root/bin/s3qlrm
blob: f720ba13e652d44e4eb8a847995e5a7b10451729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
'''
s3qlrm - this file is part of S3QL (http://s3ql.googlecode.com)

Copyright (C) Nikolaus Rath <Nikolaus@rath.org>

This program can be distributed under the terms of the GNU GPLv3.
'''

from __future__ import division, print_function

import sys
import os.path

# We are running from the S3QL source directory, make sure
# that we use modules from this directory
basedir = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '..'))
if (os.path.exists(os.path.join(basedir, 'setup.py')) and
    os.path.exists(os.path.join(basedir, 'src', 's3ql', '__init__.py'))):
    sys.path = [os.path.join(basedir, 'src')] + sys.path

# When running from HG repo, enable all warnings    
if os.path.exists(os.path.join(basedir, 'MANIFEST.in')):
    import warnings
    warnings.simplefilter('default')

    
import s3ql.remove
s3ql.remove.main(sys.argv[1:])