summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authoreroen2013-11-14 11:34:21 +0100
committereroen2013-11-14 14:47:10 +0100
commita217a82444aed528a2760521056b467cf8215650 (patch)
treeb6b91c9739781e6331ee238483f51c6cf9265d7c /bin
downloadgit-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-xbin/git-annex-wrapper17
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()