diff options
| author | eroen | 2013-11-14 11:34:21 +0100 |
|---|---|---|
| committer | eroen | 2013-11-14 14:47:10 +0100 |
| commit | a217a82444aed528a2760521056b467cf8215650 (patch) | |
| tree | b6b91c9739781e6331ee238483f51c6cf9265d7c /bin | |
| download | git-annex-wrapper-a217a82444aed528a2760521056b467cf8215650.tar.gz git-annex-wrapper-a217a82444aed528a2760521056b467cf8215650.tar.bz2 git-annex-wrapper-a217a82444aed528a2760521056b467cf8215650.tar.xz | |
initial commit
Commands are passed through
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/git-annex-wrapper | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/git-annex-wrapper b/bin/git-annex-wrapper new file mode 100755 index 0000000..eddaf0f --- /dev/null +++ b/bin/git-annex-wrapper @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +''' +By eroen, 2013 + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. +''' + +from ga_wrapper import wrapper + + +def main(): + wrapper.generic_wrapper() + +if __name__ == '__main__': + main() |
